/* ═══════════════════════════════════════════════════════════════════════════
   NOVA MED SPA - Premium Design System
   Luxury Medical Aesthetics | Plainview, NY
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   1. FONTS & CUSTOM PROPERTIES
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Layout */
  --header-height: 80px;
  
  /* Colors - Luxury Dark & Gold */
  --bg-primary: #030303;
  --bg-secondary: #080808;
  --bg-card: #0a0a0a;
  --bg-elevated: #0e0e0e;
  
  /* Backward compatibility aliases */
  --bg: var(--bg-primary);
  --bg-alt: var(--bg-secondary);
  --card: var(--bg-card);
  
  --text-primary: #faf8f5;
  --text-secondary: #ccc8c0;
  --text-muted: #8a867e;
  
  /* Premium Gold Palette */
  --gold: #d4a74a;
  --gold-light: #f4d794;
  --gold-bright: #ffeaa7;
  --gold-dark: #b8942f;
  --gold-gradient: linear-gradient(135deg, #f4d794 0%, #d4a74a 40%, #b8942f 100%);
  --gold-shimmer: linear-gradient(90deg, #d4a74a 0%, #f4d794 25%, #d4a74a 50%, #f4d794 75%, #d4a74a 100%);
  --gold-glow: rgba(212, 167, 74, 0.2);
  
  --accent: #8b7355;
  --success: #6b8f71;
  --error: #c75d5d;
  
  /* Borders & Lines - More visible gold */
  --border-subtle: rgba(212, 167, 74, 0.1);
  --border-light: rgba(212, 167, 74, 0.2);
  --border-medium: rgba(212, 167, 74, 0.35);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 40px rgba(201, 169, 110, 0.15);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 100px;
  
  /* Layout */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  /* Rich gradient background with gold accents */
  background: 
    radial-gradient(ellipse 150% 100% at 0% 0%, rgba(212, 167, 74, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 100% 150% at 100% 100%, rgba(212, 167, 74, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(212, 167, 74, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #050505 0%, #030303 50%, #050505 100%);
  background-attachment: fixed;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
}

.text-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(212, 167, 74, 0.3));
}

.text-muted {
  color: var(--text-muted);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldPulse 3s ease infinite;
}

@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. LAYOUT
   ───────────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--sm {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header .lead {
  margin-bottom: var(--space-lg);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 167, 74, 0.4), transparent);
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ─────────────────────────────────────────────────────────────────────────────
   5. BUTTONS - LUXURY GOLD EDITION
   ───────────────────────────────────────────────────────────────────────────── */

/* Shimmer animation */
@keyframes btnShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.3), 0 0 40px rgba(201, 169, 110, 0.1); }
  50% { box-shadow: 0 0 30px rgba(201, 169, 110, 0.5), 0 0 60px rgba(201, 169, 110, 0.2); }
}

@keyframes goldPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle inner glow */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.25) 0%, rgba(212, 167, 74, 0.1) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 10px 40px rgba(212, 167, 74, 0.3),
    0 0 30px rgba(212, 167, 74, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: var(--gold-bright);
}

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

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(212, 167, 74, 0.25);
}

/* PRIMARY BUTTON - Luxury Gold */
.btn--primary {
  background: linear-gradient(
    135deg,
    #d4a74a 0%,
    #f4d794 25%,
    #d4a74a 50%,
    #f4d794 75%,
    #d4a74a 100%
  ) !important;
  background-size: 200% auto !important;
  color: #0a0a0a !important;
  border: none !important;
  font-weight: 600;
  text-shadow: none;
  box-shadow: 
    0 4px 20px rgba(212, 167, 74, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn--primary::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  ) !important;
  background-size: 200% 100%;
  opacity: 0;
}

.btn--primary:hover {
  background: linear-gradient(
    135deg,
    #f4d794 0%,
    #ffe4a0 25%,
    #f4d794 50%,
    #ffe4a0 75%,
    #f4d794 100%
  ) !important;
  background-size: 200% auto !important;
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 50px rgba(212, 167, 74, 0.6),
    0 0 80px rgba(244, 215, 148, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
  color: #050505 !important;
}

.btn--primary:hover::before {
  opacity: 1;
  animation: btnShimmer 1.5s ease infinite;
}

.btn--primary:active {
  transform: translateY(-1px) scale(1);
}

/* Large button */
.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
}

.btn--lg.btn--primary {
  box-shadow: 
    0 6px 25px rgba(201, 169, 110, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn--lg.btn--primary:hover {
  box-shadow: 
    0 20px 50px rgba(201, 169, 110, 0.55),
    0 0 80px rgba(201, 169, 110, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* Small button */
.btn--sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* Glow button - Special CTA effect */
.btn--glow {
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn--glow::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4), 0 0 40px rgba(201, 169, 110, 0.2);
  }
  50% { 
    box-shadow: 0 6px 30px rgba(201, 169, 110, 0.6), 0 0 60px rgba(201, 169, 110, 0.4);
  }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.btn--glow:hover {
  animation: none;
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.7), 0 0 80px rgba(201, 169, 110, 0.5);
}

.btn--glow:hover::after {
  opacity: 0.8;
  filter: blur(15px);
}

/* Outline button - Gold border */
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn--outline::before {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0;
  z-index: -1;
}

.btn--outline:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: 
    0 10px 30px rgba(201, 169, 110, 0.4),
    0 0 40px rgba(201, 169, 110, 0.2);
}

/* Ghost button */
.btn--ghost {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  box-shadow: none;
}

.btn--ghost::before {
  display: none;
}

.btn--ghost:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Icon inside button */
.btn svg {
  transition: transform 0.3s ease;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   6. HEADER / NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 167, 74, 0.1);
  transition: all var(--transition-base);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 167, 74, 0.3), transparent);
}

.header.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(3, 3, 3, 0.98);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 167, 74, 0.2);
}

.logo:hover .logo__icon {
  transform: scale(1.08);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(212, 167, 74, 0.3);
  border-color: rgba(212, 167, 74, 0.4);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.logo:hover .logo__name {
  color: var(--gold-light);
}

.logo__tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: calc(100% - var(--space-lg));
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  padding: var(--space-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.nav__dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__dropdown-item:hover {
  color: var(--text-primary);
  background: var(--gold-glow);
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: rgba(201, 169, 110, 0.05);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
}

.menu-toggle__icon {
  width: 20px;
  height: 14px;
  position: relative;
}

.menu-toggle__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.menu-toggle__icon span:nth-child(1) { top: 0; }
.menu-toggle__icon span:nth-child(2) { top: 6px; }
.menu-toggle__icon span:nth-child(3) { bottom: 0; }

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

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

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

/* ─────────────────────────────────────────────────────────────────────────────
   7. MOBILE MENU
   ───────────────────────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu.open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: rgba(201, 169, 110, 0.05);
  color: var(--text-primary);
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.mobile-menu__close:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
}

.mobile-menu__nav {
  flex: 1;
  padding: var(--space-lg);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  font-size: 1.0625rem;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  margin-bottom: var(--space-xs);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--text-primary);
  background: rgba(201, 169, 110, 0.08);
}

.mobile-menu__link svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.mobile-menu__footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.mobile-menu__cta {
  display: grid;
  gap: var(--space-sm);
}

.mobile-menu__cta .btn {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-3xl);
  overflow: hidden;
}

/* Small Hero for Location/Inner Pages */
.hero--sm {
  min-height: auto;
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
}

.hero--sm .hero__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero--sm h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

.hero--sm .hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: var(--space-lg);
}

.hero--sm .hero__cta {
  justify-content: center;
}

.hero--sm .hero__trust {
  justify-content: center;
  margin-top: var(--space-lg);
}

.hero--sm .hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero--sm .hero__stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__video,
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(212, 167, 74, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, 
      rgba(3, 3, 3, 0.2) 0%, 
      rgba(3, 3, 3, 0.3) 30%,
      rgba(3, 3, 3, 0.6) 70%,
      rgba(3, 3, 3, 0.95) 100%
    );
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.15) 0%, rgba(212, 167, 74, 0.05) 100%);
  border: 1px solid rgba(212, 167, 74, 0.3);
  border-radius: var(--radius-full);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero__badge-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(212, 167, 74, 0.6);
}

.hero__badge-text {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__title {
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 640px;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px var(--space-md);
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.15) 0%, rgba(212, 167, 74, 0.05) 100%);
  border: 1px solid rgba(212, 167, 74, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-out);
}

.hero__badge:hover {
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.25) 0%, rgba(212, 167, 74, 0.1) 100%);
  border-color: rgba(212, 167, 74, 0.5);
  transform: translateY(-2px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 4px rgba(212, 167, 74, 0.5));
}

@media (max-width: 640px) {
  .hero__badges {
    justify-content: center;
  }
  
  .hero__badge {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s var(--ease-out) 1s both;
  z-index: 3;
}

.hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 15px rgba(212, 167, 74, 0.3);
}

.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(212, 167, 74, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 167, 74, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 167, 74, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 167, 74, 0.15),
    inset 0 1px 0 rgba(212, 167, 74, 0.1);
}

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

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-base);
  filter: sepia(40%) saturate(120%) hue-rotate(5deg) brightness(0.9);
}

.card:hover .card__media img {
  transform: scale(1.05);
  filter: sepia(0%) saturate(100%) hue-rotate(0deg) brightness(1);
}

.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.15) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.card:hover .card__media::after {
  opacity: 0;
}

.card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   GOLD IMAGE EFFECT - Global styling for images with gold tint
   ───────────────────────────────────────────────────────────────────────────── */
.img-gold {
  filter: sepia(35%) saturate(130%) hue-rotate(5deg) brightness(0.92);
  transition: filter var(--transition-base);
}

.img-gold:hover {
  filter: sepia(0%) saturate(100%) hue-rotate(0deg) brightness(1);
}

/* Gallery images */
.gallery-grid img,
.before-after__image img {
  filter: sepia(30%) saturate(120%) hue-rotate(5deg) brightness(0.9);
  transition: filter var(--transition-base), transform var(--transition-base);
}

.gallery-grid img:hover,
.before-after__image:hover img {
  filter: sepia(0%) saturate(100%) hue-rotate(0deg) brightness(1);
  transform: scale(1.02);
}

/* Service page images */
.service-hero__image img,
.treatment-image img {
  filter: sepia(25%) saturate(110%) hue-rotate(5deg) brightness(0.95);
  transition: filter var(--transition-slow);
}

.service-hero__image:hover img,
.treatment-image:hover img {
  filter: sepia(0%) saturate(100%) hue-rotate(0deg) brightness(1);
}

/* Team member images */
.team-card__image img {
  filter: sepia(20%) saturate(90%) brightness(0.95);
  transition: filter var(--transition-base);
}

.team-card:hover .team-card__image img {
  filter: sepia(0%) saturate(100%) brightness(1);
}

.card__body {
  padding: var(--space-lg);
}

.card__tag {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: var(--space-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.2) 0%, rgba(212, 167, 74, 0.1) 100%);
  border: 1px solid rgba(212, 167, 74, 0.3);
  border-radius: var(--radius-full);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.card:hover .card__title {
  color: var(--gold);
}

.card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.card__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Card variants */
.card--horizontal {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

.card--horizontal .card__media {
  aspect-ratio: 1;
}

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

.card--featured {
  grid-column: span 2;
}

.card--featured .card__media {
  aspect-ratio: 21 / 9;
}

@media (max-width: 768px) {
  .card--featured {
    grid-column: span 1;
  }
  .card--featured .card__media {
    aspect-ratio: 16 / 9;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. SERVICE CARDS (Special grid)
   ───────────────────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

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

/* ─────────────────────────────────────────────────────────────────────────────
   11. CATEGORY NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
}

.category-nav__btn {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.category-nav__btn:hover,
.category-nav__btn.active {
  color: var(--bg-primary);
  background: var(--gold);
  border-color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   12. FEATURES / TRUST SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.feature {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.feature::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 167, 74, 0.1);
}

.feature:hover::before {
  opacity: 0.5;
}

.feature__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.15) 0%, rgba(212, 167, 74, 0.05) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all 0.4s ease;
}

.feature:hover .feature__icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(212, 167, 74, 0.4);
  transform: scale(1.1);
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.feature__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   13. SPECIALS / OFFERS
   ───────────────────────────────────────────────────────────────────────────── */
.special-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.special-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
  background-size: 200% 100%;
  animation: textShimmer 3s linear infinite;
}

.special-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 167, 74, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.special-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  width: fit-content;
  padding: 6px var(--space-md);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 
    0 4px 15px rgba(212, 167, 74, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.special-card__title {
  margin-bottom: var(--space-md);
}

.special-card__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.special-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.special-card__price del {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-left: var(--space-sm);
}

.special-card__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.special-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .special-card {
    grid-template-columns: 1fr;
  }
  
  .special-card__image {
    order: -1;
    aspect-ratio: 16 / 9;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   14. TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────────── */
.testimonial {
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
  color: var(--gold);
}

.testimonial__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 600;
}

.testimonial__name {
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial__treatment {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS GRID (City Pages)
   ───────────────────────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

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

.testimonial-card {
  padding: var(--space-lg);
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.testimonial-card--featured {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.02) 100%);
  border-color: rgba(201, 169, 110, 0.3);
}

@media (min-width: 1024px) {
  .testimonial-card--featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.testimonial-card__text a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 110, 0.3);
  text-underline-offset: 2px;
}

.testimonial-card__text a:hover {
  text-decoration-color: var(--gold);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__image {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-card__city {
  font-size: 0.875rem;
  color: var(--gold);
}

.testimonial-card__treatment {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-card__treatment a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.2s;
}

.testimonial-card__treatment a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA BOX (In-content)
   ───────────────────────────────────────────────────────────────────────────── */
.cta-box {
  padding: var(--space-2xl);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.02) 100%);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-box__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}

.cta-box__content p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.cta-box__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-box h4 {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.cta-box .btn-group {
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ADDON GRID & CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

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

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

.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.addon-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 167, 74, 0.1);
}

.addon-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.2) 0%, rgba(212, 167, 74, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--gold);
}

.addon-card h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.addon-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CARD ENHANCEMENTS
   ───────────────────────────────────────────────────────────────────────────── */
.card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 6px 12px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.card__list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.card__list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.card__actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.card--service {
  display: flex;
  flex-direction: column;
}

.card--service .card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card--service .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
}

.card--service .card__actions {
  margin-top: auto;
  padding-top: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SIDEBAR NAV (Internal Links)
   ───────────────────────────────────────────────────────────────────────────── */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sidebar-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.2s;
}

.sidebar-nav a:hover {
  color: var(--gold);
  padding-left: var(--space-sm);
}

.sidebar-nav a:last-child {
  border-bottom: none;
}

.sidebar-card--highlight {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.02) 100%);
  border-color: rgba(201, 169, 110, 0.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   REVIEWS SLIDER
   ───────────────────────────────────────────────────────────────────────────── */
.reviews-slider {
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) 0;
}

.reviews-slider__track {
  display: flex;
  gap: var(--space-lg);
  animation: reviewsScroll 60s linear infinite;
  width: max-content;
}

.reviews-slider__track:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 350px;
  padding: var(--space-lg);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 167, 74, 0.1);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 15px rgba(212, 167, 74, 0.3);
}

.review-card__info h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.review-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--gold);
}

.review-card__location svg {
  width: 12px;
  height: 12px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
}

.review-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.review-card__treatment {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 167, 74, 0.1);
  border: 1px solid rgba(212, 167, 74, 0.2);
  border-radius: var(--radius-full);
}

/* Reviews Grid (for reviews page) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    width: 300px;
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination__btn:hover,
.pagination__btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

.pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   15. GALLERY / BEFORE-AFTER
   ───────────────────────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

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

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

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

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

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

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

.faq-item__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-item.open .faq-item__icon {
  background: var(--gold);
  color: var(--bg-primary);
  transform: rotate(45deg);
}

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

.faq-item.open .faq-item__content {
  max-height: 500px;
}

.faq-item__answer {
  padding-bottom: var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   17. PRICING TABLE
   ───────────────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.pricing-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.08) 0%, var(--bg-card) 100%);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-md);
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.pricing-card__header {
  text-align: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-lg);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__features {
  margin-bottom: var(--space-xl);
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
}

.pricing-card__feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__cta .btn {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   18. TEAM SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

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

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

.team-card {
  text-align: center;
}

.team-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.team-card__role {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   19. CONTACT / FORM
   ───────────────────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-item__value a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.contact-item__value a:hover {
  color: var(--gold);
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input,
.form-textarea {
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   20. FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer__brand {
  max-width: 300px;
}

.footer__brand .logo {
  margin-bottom: var(--space-lg);
}

.footer__brand-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   NAVIGATION ICONS (Directions)
   ───────────────────────────────────────────────────────────────────────────── */
.nav-directions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.nav-directions__title {
  font-size: 0.875rem;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: var(--space-xs);
}

.nav-directions__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.nav-directions__link:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-directions__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-directions__link--google:hover {
  background: rgba(66, 133, 244, 0.15);
  border-color: #4285F4;
  color: #4285F4;
}

.nav-directions__link--waze:hover {
  background: rgba(51, 204, 255, 0.15);
  border-color: #33CCFF;
  color: #33CCFF;
}

.nav-directions__link--apple:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* Compact version for footer */
.nav-directions--compact {
  gap: var(--space-sm);
}

.nav-directions--compact .nav-directions__link {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.8125rem;
}

.nav-directions--compact .nav-directions__link svg {
  width: 18px;
  height: 18px;
}

/* Centered version for map sections */
.nav-directions--centered {
  justify-content: center;
}

.footer__column-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer__copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   21. STICKY CTA BAR
   ───────────────────────────────────────────────────────────────────────────── */
/* Sticky CTA - Mobile Only */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: var(--space-md);
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.95) 0%, rgba(3, 3, 3, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 167, 74, 0.2);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  .sticky-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .sticky-cta.visible {
    transform: translateY(0);
  }
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta .btn {
  flex: 1;
  max-width: 280px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   22. PAGE HEADER (Inner pages)
   ───────────────────────────────────────────────────────────────────────────── */
.page-header {
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.03) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.page-header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .page-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-header__content h1 {
  margin-bottom: var(--space-sm);
}

.page-header .lead {
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.breadcrumb__separator {
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   23. ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade"] {
  transform: none;
}

[data-animate="scale"] {
  transform: scale(0.95);
}

[data-animate="scale"].in-view {
  transform: scale(1);
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

[data-stagger].in-view > *:nth-child(1) { transition-delay: 0.1s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: 0.2s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: 0.3s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: 0.4s; }
[data-stagger].in-view > *:nth-child(5) { transition-delay: 0.5s; }
[data-stagger].in-view > *:nth-child(6) { transition-delay: 0.6s; }

[data-stagger].in-view > * {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile fallback - show elements immediately if JS animation doesn't trigger */
@media (max-width: 768px) {
  [data-stagger] > *,
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   24. UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none !important; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   25. RESPONSIVE ADJUSTMENTS
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --space-3xl: 80px;
    --space-2xl: 48px;
  }
  
  .nav,
  .header__cta {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 60px;
    --space-2xl: 40px;
    --space-xl: 32px;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero {
    min-height: 90vh;
    padding-bottom: 120px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.875rem;
  }
  
  .btn--lg {
    padding: 16px 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-3xl: 48px;
  }
  
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__cta .btn {
    width: 100%;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   26. PRINT STYLES
   ───────────────────────────────────────────────────────────────────────────── */
@media print {
  .header,
  .footer,
  .sticky-cta,
  .mobile-menu {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    min-height: auto;
    padding: 20px 0;
  }
  
  .hero__bg {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   27. ENHANCED FOOTER
   ───────────────────────────────────────────────────────────────────────────── */

/* Footer CTA Banner */
.footer__cta-banner {
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.15) 0%, rgba(212, 167, 74, 0.05) 100%);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0;
}

.footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.footer__cta-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.footer__cta-content p {
  color: var(--text-secondary);
  margin: 0;
}

.footer__cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .footer__cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .footer__cta-buttons .btn {
    width: 100%;
  }
}

/* Footer Main */
.footer__main {
  padding: var(--space-3xl) 0;
}

/* 5/6 Column Grid */
.footer__grid--5col {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr 1.2fr;
  gap: var(--space-xl);
}

@media (max-width: 1400px) {
  .footer__grid--5col {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .footer__grid--5col .footer__brand {
    grid-column: span 3;
    max-width: 100%;
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  
  .footer__grid--5col .footer__brand .logo {
    justify-content: center;
  }
  
  .footer__grid--5col .footer__social {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .footer__grid--5col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid--5col .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer__grid--5col {
    grid-template-columns: 1fr;
  }
  
  .footer__grid--5col .footer__brand {
    grid-column: span 1;
  }
}

/* Footer Contact Info */
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer__contact-item a:hover {
  color: var(--gold);
}

/* Footer Blog Posts */
.footer__blog-posts {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__blog-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: all 0.2s;
}

.footer__blog-item:hover {
  padding-left: var(--space-sm);
}

.footer__blog-item:hover .footer__blog-title {
  color: var(--gold);
}

.footer__blog-title {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color 0.2s;
}

.footer__blog-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Gold Link */
.footer__link--gold {
  color: var(--gold) !important;
  font-weight: 500;
}

.footer__link--gold:hover {
  color: var(--gold-light) !important;
}

/* Footer Bottom Enhanced */
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

@media (max-width: 640px) {
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   28. LOCATION PAGES
   ───────────────────────────────────────────────────────────────────────────── */
.page-header--city {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  border-bottom: 1px solid var(--border-subtle);
  min-height: auto;
}

.page-header--city h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
}

.text-gold {
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
}

/* Content Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-3xl);
  align-items: start;
}

.content-main h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.content-main h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-main p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* Sidebar */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-card--cta {
  background: linear-gradient(135deg, rgba(212, 167, 74, 0.1) 0%, rgba(212, 167, 74, 0.05) 100%);
  border-color: var(--border-medium);
}

.sidebar-card--cta h4 {
  color: var(--gold);
}

/* Info List */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li strong {
  color: var(--text-primary);
}

.info-list li a {
  color: var(--gold);
}

/* Hours List */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.feature-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.feature-list li strong {
  color: var(--text-primary);
}

/* Map Container */
.map-container {
  border-radius: var(--radius-lg);
    overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Nearby Cities */
.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.nearby-city {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nearby-city:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.nearby-city--all {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  border-color: var(--gold);
  font-weight: 600;
}

.nearby-city--all:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Small Services Grid */
.services-grid--sm {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.services-grid--sm .card {
  padding: 0;
}

.services-grid--sm .card__body {
  padding: var(--space-md);
}

.services-grid--sm .card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.services-grid--sm .card__text {
  font-size: 0.85rem;
  margin: 0;
}

/* Button Block */
.btn--block {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.btn--block:last-child {
  margin-bottom: 0;
}

/* Location Page Responsive */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .content-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
  }
  
  .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .services-grid--sm {
    grid-template-columns: 1fr;
  }
  
  .nearby-cities {
    flex-direction: column;
    align-items: stretch;
  }
  
  .nearby-city {
    text-align: center;
  }
  
  .content-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   BOOKING CTA SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.booking-cta-section {
  position: relative;
  padding: var(--space-3xl) 0;
}

.booking-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(212, 167, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.booking-widget-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 167, 74, 0.15);
}

.booking-widget-container iframe {
  background: #fff;
}

.booking-cta-buttons {
  margin-top: var(--space-2xl);
}

.booking-cta-buttons .btn {
  min-width: 200px;
}

@media (max-width: 768px) {
  .booking-cta-section {
    padding: var(--space-2xl) 0;
  }
  
  .booking-widget-container {
    margin: 0 calc(-1 * var(--space-md));
    border-radius: 0;
  }
  
  .booking-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }

/* ─────────────────────────────────────────────────────────────────────────────
   GOLD SPARKLES ANIMATED BACKGROUND
   ───────────────────────────────────────────────────────────────────────────── */
.sparkles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  /* Add ambient gold glow layers */
  background: 
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(212, 167, 74, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(212, 167, 74, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 50% 10%, rgba(212, 167, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 70% 30% at 80% 30%, rgba(244, 215, 148, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 70% at 20% 70%, rgba(244, 215, 148, 0.05) 0%, transparent 50%);
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle-twinkle ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.sparkle::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sparkle::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
}

/* Different sparkle variations */
.sparkle:nth-child(3n) {
  width: 6px;
  height: 6px;
}

.sparkle:nth-child(3n)::before {
  width: 24px;
}

.sparkle:nth-child(3n)::after {
  height: 24px;
}

.sparkle:nth-child(5n) {
  width: 3px;
  height: 3px;
}

.sparkle:nth-child(5n)::before {
  width: 10px;
}

.sparkle:nth-child(5n)::after {
  height: 10px;
}

@keyframes sparkle-twinkle {
  0%, 100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: scale(0.5) rotate(45deg);
    opacity: 0.4;
  }
  50% {
    transform: scale(1) rotate(90deg);
    opacity: 1;
    box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(212, 167, 74, 0.6), 0 0 40px rgba(244, 215, 148, 0.3);
  }
  75% {
    transform: scale(0.5) rotate(135deg);
    opacity: 0.4;
  }
}

/* Floating gold orbs */
.sparkles-bg::before,
.sparkles-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 15s ease-in-out infinite;
}

.sparkles-bg::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 167, 74, 0.2) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.sparkles-bg::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 215, 148, 0.15) 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: 7s;
}

@keyframes orb-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(50px, -30px) scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: translate(100px, 20px) scale(0.9);
    opacity: 0.6;
  }
  75% {
    transform: translate(30px, 50px) scale(1.05);
    opacity: 0.8;
  }
}

/* Footer Free Consultation Link (not button) */
.footer__consultation-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: var(--space-md);
  transition: all 0.3s ease;
}

.footer__consultation-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(212, 167, 74, 0.5);
}

.footer__consultation-link svg {
  width: 16px;
  height: 16px;
}
  
  .booking-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ENHANCED GOLD SPARKLE THEME - Ambient Effects
   ───────────────────────────────────────────────────────────────────────────── */

/* Section Glow Effects */
.section {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212, 167, 74, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Gold corner accents */
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top right, rgba(212, 167, 74, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Enhanced dividers with gold glow */
.section-divider {
  position: relative;
  overflow: visible;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(212, 167, 74, 0.15) 0%, transparent 70%);
  filter: blur(10px);
}

/* Card ambient glow */
.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 167, 74, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.card:hover::after {
  opacity: 1;
}

/* Gold particles animation for special sections */
@keyframes particle-rise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* Shimmer text effect */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-bright) 25%,
    var(--gold-light) 50%,
    var(--gold-bright) 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-slide 3s linear infinite;
}

@keyframes shimmer-slide {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Glowing border effect on hover */
.glow-border {
  position: relative;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(45deg, var(--gold), var(--gold-bright), var(--gold-light), var(--gold));
  background-size: 400% 400%;
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity 0.4s ease;
  animation: border-glow 3s ease infinite;
}

.glow-border:hover::before {
  opacity: 0.6;
}

@keyframes border-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Ambient light spots */
.ambient-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ambient-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: ambient-drift 20s ease-in-out infinite;
}

.ambient-light--1 {
  width: 500px;
  height: 500px;
  background: rgba(212, 167, 74, 0.2);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.ambient-light--2 {
  width: 400px;
  height: 400px;
  background: rgba(244, 215, 148, 0.15);
  top: 60%;
  right: -15%;
  animation-delay: 5s;
}

.ambient-light--3 {
  width: 350px;
  height: 350px;
  background: rgba(184, 148, 47, 0.12);
  bottom: -10%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes ambient-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, 50px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 30px) scale(0.95);
  }
  75% {
    transform: translate(40px, -20px) scale(1.05);
  }
}

/* Footer with gold ambiance */
.footer {
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 167, 74, 0.06) 0%, transparent 50%),
    var(--bg-secondary);
}

/* Header gold accent line animation */
.header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: header-glow 4s ease-in-out infinite;
}

@keyframes header-glow {
  0%, 100% { 
    background-position: 100% 0;
    opacity: 0.3;
  }
  50% { 
    background-position: 0% 0;
    opacity: 0.6;
  }
}

/* Enhanced CTA boxes with gold theme */
.cta-box {
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 167, 74, 0.08) 0%, transparent 40%);
  animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Gold sparkle cursor trail effect (subtle) */
@media (hover: hover) {
  .sparkle-cursor {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='3' fill='%23d4a74a'/%3E%3C/svg%3E") 16 16, auto;
  }
}

/* Pulsing accent elements */
.pulse-gold {
  animation: gold-pulse 2s ease-in-out infinite;
}

@keyframes gold-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 167, 74, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(212, 167, 74, 0.1);
  }
}

/* Ensure content is above sparkles */
main, .container, section > .container {
  position: relative;
  z-index: 1;
}
