/* ==========================================================================
   THE VILLA SPA - LUXURY DESIGN SYSTEM
   Custom color palette extracted from Instagram page:
   - Deep Warm Espresso/Charcoal: #221C1A (Main brand contrast color)
   - Accent Champagne Gold: #C5A880 (Luxurious gold accents)
   - Warm Sand/Beige: #EBE5DF (Warm neutral background & elements)
   - Soft Cream: #F8F6F2 (Airy content backgrounds)
   ========================================================================== */

:root {
  /* Colors */
  --color-espresso: #221C1A;
  --color-espresso-light: #2E2725;
  --color-espresso-dark: #171211;
  --color-champagne: #C5A880;
  --color-champagne-light: #D5BD9C;
  --color-champagne-dark: #B0926A;
  --color-sand: #EBE5DF;
  --color-sand-light: #F4EFEB;
  --color-cream: #F8F6F2;
  --color-white: #FFFFFF;
  
  /* Status Colors */
  --color-success: #6E8A75;
  --color-error: #B56B6B;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Spacing & Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --border-radius-circle: 50%;
  
  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(34, 28, 26, 0.05);
  --shadow-premium: 0 12px 40px rgba(34, 28, 26, 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(34, 28, 26, 0.08);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-cream);
  color: var(--color-espresso);
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--color-champagne);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-champagne-dark);
}

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.text-center-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-champagne-dark);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-espresso);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-espresso);
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-espresso);
  color: var(--color-cream);
}

.btn-primary:hover {
  background-color: var(--color-champagne-dark);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-espresso);
  color: var(--color-espresso);
}

.btn-outline:hover {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}

.btn-xs {
  padding: 6px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

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

.btn-primary:disabled, .btn-outline:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.w-full {
  width: 100%;
}

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

.text-muted {
  opacity: 0.6;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-admin {
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--color-champagne-dark);
  border: 1px solid var(--color-champagne);
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1010;
}

.announcement-content strong {
  color: var(--color-champagne);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(248, 246, 242, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-sand);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Elegant Logo Area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-initials {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-espresso);
  position: relative;
}

.logo-divider {
  width: 1px;
  height: 28px;
  background-color: var(--color-champagne);
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-espresso);
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--color-champagne-dark);
  font-weight: 500;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-espresso);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-champagne);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-champagne-dark);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-espresso);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-espresso-dark);
  color: var(--color-cream);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.02);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-champagne);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.8s forwards 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0;
  color: var(--color-sand-light);
  margin-bottom: 40px;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s forwards 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions .btn-outline {
  border-color: var(--color-cream);
  color: var(--color-cream);
}

.hero-actions .btn-outline:hover {
  background-color: var(--color-cream);
  color: var(--color-espresso);
}

/* Floating social badges side-aligned */
.hero-social-badges {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background-color: rgba(34, 28, 26, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--color-cream);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.social-badge-item i {
  color: var(--color-champagne);
  font-size: 1rem;
}

.social-badge-item:hover {
  background-color: var(--color-espresso);
  border-color: var(--color-champagne);
  transform: translateX(-4px);
}

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

/* ==========================================================================
   INSTAGRAM STORIES HIGHLIGHTS
   ========================================================================== */

.highlights-section {
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-sand);
  padding: 24px 0;
}

.highlights-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.highlight-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.circle-outer {
  width: 76px;
  height: 76px;
  border-radius: var(--border-radius-circle);
  border: 2px solid var(--color-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  transition: var(--transition-smooth);
  background-color: transparent;
}

.circle-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-circle);
  background-color: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-espresso);
  font-size: 1.35rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(34, 28, 26, 0.05);
}

.highlight-circle-item span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-espresso);
  transition: var(--transition-fast);
}

/* Hover effects */
.highlight-circle-item:hover .circle-outer {
  transform: scale(1.08) rotate(15deg);
  border-color: var(--color-espresso);
}

.highlight-circle-item:hover .circle-inner {
  background-color: var(--color-espresso);
  color: var(--color-champagne);
}

.highlight-circle-item:hover span {
  color: var(--color-champagne-dark);
}

/* ==========================================================================
   ABOUT / SANCTUARY SECTION
   ========================================================================== */

.about-section {
  background-color: var(--color-white);
}

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

.about-img-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
}

/* Instagram quote box */
.about-tag {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--color-espresso);
  color: var(--color-cream);
  padding: 24px 30px;
  border-radius: var(--border-radius-md);
  max-width: 280px;
  box-shadow: var(--shadow-premium);
  border-left: 3px solid var(--color-champagne);
}

.tag-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-champagne);
  display: block;
  margin-bottom: 6px;
}

.about-tag p {
  font-size: 0.85rem;
  line-height: 1.5;
  font-style: italic;
  opacity: 0.9;
}

.about-text-content {
  padding-right: 20px;
}

.about-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-espresso);
  opacity: 0.85;
  margin-bottom: 24px;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--color-champagne);
  margin-top: 2px;
}

.feature-item h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--color-espresso);
  opacity: 0.75;
}

/* ==========================================================================
   SERVICES SECTION (Price List Grid & Tabs)
   ========================================================================== */

.services-section {
  background-color: var(--color-sand-light);
  border-top: 1px solid var(--color-sand);
  border-bottom: 1px solid var(--color-sand);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-sand);
  color: var(--color-espresso);
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--color-champagne);
  color: var(--color-champagne-dark);
}

.tab-btn.active {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  border-color: var(--color-espresso);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-sand-light);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(197, 168, 128, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-espresso);
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-champagne-dark);
  white-space: nowrap;
}

.service-detail {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.8;
  color: var(--color-espresso);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-sand-light);
  padding-top: 18px;
}

.service-duration {
  font-size: 0.8rem;
  color: var(--color-espresso);
  opacity: 0.6;
  font-weight: 500;
}

.service-duration i {
  margin-right: 4px;
  color: var(--color-champagne-dark);
}

/* Floating booking summary bar */
.booking-summary-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: calc(100% - 48px);
  max-width: 600px;
  background-color: var(--color-espresso);
  color: var(--color-cream);
  padding: 16px 28px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--color-champagne);
  transition: var(--transition-smooth);
}

.booking-summary-banner.active {
  transform: translateX(-50%) translateY(0);
}

.summary-details {
  display: flex;
  flex-direction: column;
}

.summary-count {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-champagne);
  font-weight: 500;
}

.summary-total {
  font-size: 1.15rem;
  font-family: var(--font-serif);
}

.summary-total strong {
  color: var(--color-white);
  font-weight: bold;
}

/* ==========================================================================
   BOOTCAMP SECTION (Academy Showcase & Syllabus)
   ========================================================================== */

.bootcamp-section {
  background-color: var(--color-white);
}

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

.bootcamp-tag-promo {
  display: inline-block;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--color-champagne-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--border-radius-sm);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.bootcamp-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 24px;
}

.bootcamp-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-espresso);
  opacity: 0.85;
  margin-bottom: 30px;
}

.bootcamp-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.b-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
}

.b-highlight i {
  color: var(--color-success);
}

/* Pricing cards grid inside bootcamp */
.bootcamp-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.price-box {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-sand);
  padding: 20px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.price-box.premium {
  border-color: var(--color-champagne);
  background-color: rgba(197, 168, 128, 0.05);
}

.price-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-subtle);
}

.tier-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-espresso);
  opacity: 0.7;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.tier-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-espresso);
  display: block;
  margin-bottom: 4px;
}

.price-box.premium .tier-price {
  color: var(--color-champagne-dark);
}

.tier-detail {
  font-size: 0.75rem;
  color: var(--color-espresso);
  opacity: 0.6;
}

.bootcamp-cta-group {
  display: flex;
  gap: 16px;
}

/* Media/Image side of bootcamp */
.bootcamp-media-wrapper {
  position: relative;
}

.bootcamp-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
}

.next-cohort-box {
  position: absolute;
  top: 30px;
  left: -30px;
  background-color: var(--color-white);
  border: 1px solid var(--color-champagne);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 16px;
}

.next-cohort-box i {
  font-size: 1.8rem;
  color: var(--color-champagne-dark);
}

.next-cohort-box h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-espresso);
  opacity: 0.6;
}

.next-cohort-box p {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--color-espresso);
}

/* ==========================================================================
   BOOKING WIZARD
   ========================================================================== */

.booking-section {
  background-color: var(--color-sand-light);
  border-top: 1px solid var(--color-sand);
  border-bottom: 1px solid var(--color-sand);
}

.booking-wizard-card {
  background-color: var(--color-white);
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  border: 1px solid var(--color-sand);
}

/* Wizard Steps Progress */
.wizard-progress {
  background-color: var(--color-espresso);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.45;
  transition: var(--transition-smooth);
}

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

.progress-step.completed {
  opacity: 0.75;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-circle);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.progress-step.active .step-num {
  background-color: var(--color-champagne);
  color: var(--color-espresso);
  border-color: var(--color-champagne);
}

.progress-step.completed .step-num {
  background-color: var(--color-success);
  color: var(--color-cream);
  border-color: var(--color-success);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-cream);
}

.progress-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 16px;
}

/* Panels */
.wizard-panel {
  display: none;
  padding: 40px;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

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

.panel-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-espresso);
  margin-bottom: 6px;
}

.panel-subtitle {
  font-size: 0.9rem;
  color: var(--color-espresso);
  opacity: 0.6;
  margin-bottom: 30px;
}

/* Step 1 Content */
.wizard-services-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Minimal Checkbox list */
.wiz-service-select-item {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-sand);
  padding: 16px;
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.wiz-service-select-item:hover {
  border-color: var(--color-champagne);
  background-color: var(--color-white);
}

.wiz-service-select-item.selected {
  border-color: var(--color-espresso);
  background-color: rgba(34, 28, 26, 0.03);
}

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

.wiz-service-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-espresso);
}

.wiz-service-meta {
  font-size: 0.75rem;
  opacity: 0.6;
}

.wiz-service-price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-champagne-dark);
}

.wiz-checkbox {
  width: 18px;
  height: 18px;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--color-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.wiz-service-select-item.selected .wiz-checkbox {
  background-color: var(--color-espresso);
  border-color: var(--color-espresso);
  color: var(--color-cream);
}

.wiz-checkbox i {
  font-size: 0.65rem;
  opacity: 0;
}

.wiz-service-select-item.selected .wiz-checkbox i {
  opacity: 1;
}

/* Selected display at bottom */
.wizard-selected-list {
  background-color: var(--color-cream);
  border-radius: var(--border-radius-md);
  padding: 24px;
  border: 1px dashed var(--color-sand);
}

.empty-selection-msg {
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.6;
}

.selected-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selected-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.selected-item-row .remove-btn {
  background: none;
  border: none;
  color: var(--color-error);
  cursor: pointer;
  margin-left: 12px;
  font-size: 0.8rem;
}

.selected-total-row {
  border-top: 1px solid var(--color-sand);
  padding-top: 12px;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.selected-total-row strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-champagne-dark);
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  border-top: 1px solid var(--color-sand-light);
  padding-top: 24px;
}

/* Step 2 Content: Calendar & Time */
.datetime-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.calendar-wrapper {
  background-color: var(--color-sand-light);
  border-radius: var(--border-radius-md);
  padding: 20px;
  border: 1px solid var(--color-sand);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-title {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.1rem;
}

.calendar-nav-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-circle);
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--color-espresso);
}

.calendar-nav-btn:hover {
  background-color: var(--color-white);
  color: var(--color-champagne-dark);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 12px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.calendar-day-btn {
  background: none;
  border: none;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calendar-day-btn:hover:not(:disabled) {
  background-color: var(--color-champagne);
  color: var(--color-espresso);
}

.calendar-day-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.calendar-day-btn.selected-day {
  background-color: var(--color-espresso) !important;
  color: var(--color-cream) !important;
  font-weight: bold;
}

.calendar-day-btn.today {
  border: 1px solid var(--color-champagne);
}

.time-slots-wrapper {
  background-color: var(--color-cream);
  border-radius: var(--border-radius-md);
  padding: 20px;
  border: 1px dashed var(--color-sand);
  display: flex;
  flex-direction: column;
}

.time-slots-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-sand);
  padding-bottom: 10px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-height: 210px;
  overflow-y: auto;
  padding-right: 4px;
}

.select-date-prompt {
  grid-column: 1 / span 2;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  margin: auto 0;
  padding: 40px 0;
}

.time-slot-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-sand);
  padding: 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot-btn:hover {
  border-color: var(--color-champagne);
  color: var(--color-champagne-dark);
}

.time-slot-btn.selected-slot {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  border-color: var(--color-espresso);
}

/* Step 3 Content: Form */
.guest-details-form {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: var(--color-espresso);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-sand);
  border-radius: 4px;
  background-color: var(--color-sand-light);
  color: var(--color-espresso);
  font-weight: 500;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-espresso);
  background-color: var(--color-white);
}

.required {
  color: var(--color-error);
}

/* Step 4 Content: Receipt Card */
.booking-success-wrapper {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.success-animation-circle {
  width: 70px;
  height: 70px;
  background-color: rgba(110, 138, 117, 0.15);
  border-radius: var(--border-radius-circle);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
  border: 1px solid var(--color-success);
  animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
  from { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  to { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.success-message {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 30px;
}

/* Ticket design */
.luxury-receipt {
  background-color: var(--color-cream);
  border: 1px solid var(--color-sand);
  border-radius: var(--border-radius-md);
  margin-bottom: 30px;
  text-align: left;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.luxury-receipt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(90deg, var(--color-champagne) 50%, transparent 50%);
  background-size: 20px 4px;
}

.receipt-header {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.receipt-id {
  color: var(--color-champagne);
}

.receipt-body {
  padding: 24px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.receipt-row-services {
  margin-bottom: 12px;
}

.receipt-row-services ul {
  padding-left: 20px;
  margin-top: 6px;
  font-size: 0.82rem;
  opacity: 0.8;
}

.receipt-row-services li {
  margin-bottom: 4px;
}

.row-label {
  opacity: 0.6;
}

.receipt-divider {
  border-top: 1px dashed var(--color-sand);
  margin: 16px 0;
}

.receipt-row.total {
  margin-bottom: 0;
  align-items: center;
}

.price-highlight {
  font-family: var(--font-serif);
  color: var(--color-champagne-dark);
  font-size: 1.25rem;
}

.receipt-footer {
  background-color: var(--color-sand-light);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-espresso);
  opacity: 0.7;
  border-top: 1px solid var(--color-sand);
  line-height: 1.4;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */

.reviews-section {
  background-color: var(--color-white);
}

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

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

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-sand);
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.stars {
  color: var(--color-champagne-dark);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--color-espresso);
  margin-bottom: 30px;
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-circle);
  background-color: var(--color-espresso);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  border: 1.5px solid var(--color-champagne);
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--color-espresso);
}

.reviewer-status {
  font-size: 0.75rem;
  color: var(--color-champagne-dark);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--border-radius-circle);
  background-color: var(--color-sand);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--color-espresso);
  width: 20px;
  border-radius: 4px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  background-color: var(--color-cream);
  border-top: 1px solid var(--color-sand);
}

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

.contact-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 36px;
}

.contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-circle);
  background-color: var(--color-white);
  border: 1px solid var(--color-sand);
  color: var(--color-champagne-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-subtle);
}

.contact-detail-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-espresso);
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-detail-item a:hover {
  color: var(--color-champagne-dark);
}

.direction-sub {
  font-size: 0.8rem;
}

/* Custom visual map graphic */
.map-card-wrapper {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 12px;
  border: 1px solid var(--color-sand);
  box-shadow: var(--shadow-premium);
}

.map-placeholder {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  height: 320px;
  background-color: var(--color-sand);
}

.mock-map-graphics {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 28, 26, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.map-tag {
  background-color: var(--color-white);
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  max-width: 250px;
  text-align: center;
  border: 1px solid var(--color-sand);
  animation: float 4s infinite ease-in-out;
}

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

.map-tag .tag-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-espresso);
  font-weight: bold;
}

.map-tag p {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 12px;
}

/* ==========================================================================
   ADMIN PORTAL
   ========================================================================== */

.admin-dashboard-section {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  border-top: 3px solid var(--color-champagne);
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.admin-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-white);
  margin-top: 6px;
}

.admin-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background-color: var(--color-espresso-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: var(--border-radius-md);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
  display: block;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
}

.bookings-table-wrapper {
  background-color: var(--color-espresso-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  overflow-x: auto;
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.bookings-table th {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 16px 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bookings-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bookings-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background-color: var(--color-espresso-dark);
  color: var(--color-cream);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo .logo-initials {
  color: var(--color-white);
  font-size: 2rem;
}

.footer-logo .logo-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 2.5px;
  color: var(--color-champagne);
  margin-top: -4px;
}

.footer-about {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-circle);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  background-color: var(--color-champagne);
  color: var(--color-espresso);
  border-color: var(--color-champagne);
  transform: translateY(-2px);
}

.footer-links-column h4, .footer-hours-column h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-links-column h4::after, .footer-hours-column h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--color-champagne);
}

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

.footer-links-column a {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links-column a:hover {
  opacity: 1;
  color: var(--color-champagne);
  transform: translateX(4px);
}

.footer-hours-column p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer-hours-column strong {
  color: var(--color-champagne);
}

.urgent-hours-note {
  font-size: 0.75rem !important;
  color: var(--color-champagne-light) !important;
  opacity: 0.9 !important;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.4;
}

/* ==========================================================================
   MODALS LAYOUT
   ========================================================================== */

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.custom-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 28, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 600px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-sand);
  z-index: 2;
  animation: modalScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content-card.max-w-sm {
  max-width: 420px;
}

.modal-content-card.max-w-md {
  max-width: 520px;
}

@keyframes modalScaleUp {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--color-espresso);
  border: 1px solid var(--color-sand-light);
}

.modal-close:hover {
  background-color: var(--color-espresso);
  color: var(--color-cream);
}

.modal-headline {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--color-espresso);
}

.modal-subline {
  font-size: 0.88rem;
  opacity: 0.6;
  margin-bottom: 24px;
}

/* Highlight modal image container */
.highlight-modal-graphic {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--color-sand);
}

/* Bootcamp Enroll Form styling */
.bootcamp-enroll-form .form-group {
  margin-bottom: 18px;
}

.enroll-success-message {
  text-align: center;
  padding: 30px 10px;
}

.enroll-success-message i {
  font-size: 2.5rem;
  color: var(--color-success);
  margin-bottom: 16px;
}

.enroll-success-message h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.enroll-success-message p {
  font-size: 0.88rem;
  opacity: 0.7;
}

/* Syllabus Timeline styling */
.syllabus-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}

.timeline-week {
  display: flex;
  gap: 20px;
  position: relative;
}

.timeline-week::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 27px;
  width: 1px;
  height: calc(100% + 4px);
  background-color: var(--color-sand);
}

.timeline-week:last-child::before {
  display: none;
}

.week-marker {
  width: 56px;
  height: 32px;
  background-color: var(--color-espresso);
  color: var(--color-cream);
  font-size: 0.72rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
  border: 1px solid var(--color-champagne);
}

.week-details h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.week-details p {
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* ==========================================================================
   SCROLL EFFECTS & ANIMATIONS
   ========================================================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE LAYOUTS (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .about-grid, .bootcamp-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img, .bootcamp-img {
    height: 380px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-tag {
    right: 0;
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 14px 20px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 76px; /* Announcement + Header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--color-cream);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--color-sand);
    box-shadow: var(--shadow-premium);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-cta {
    width: 100%;
    margin-top: 20px;
  }
  .hero-section {
    height: auto;
    padding: 100px 0 60px 0;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-social-badges {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 40px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .highlights-wrapper {
    gap: 20px;
  }
  .circle-outer {
    width: 64px;
    height: 64px;
  }
  .circle-inner {
    font-size: 1.1rem;
  }
  .wizard-progress {
    padding: 20px;
  }
  .step-label {
    display: none; /* Hide label text on mobile steps */
  }
  .datetime-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bootcamp-pricing {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bootcamp-cta-group {
    flex-direction: column;
    gap: 12px;
  }
  .next-cohort-box {
    left: 20px;
    top: -20px;
  }
}

/* ==========================================================================
   DARK MODE - MAIN SITE & BOUTIQUE
   Activated via: body.dark-mode or body.shop-body.dark-mode
   ========================================================================== */

/* ── Theme Toggle Button ── */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: none;
  border: 1.5px solid var(--color-sand);
  color: var(--color-espresso);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background-color: var(--color-champagne);
  border-color: var(--color-champagne);
  color: var(--color-cream);
  transform: rotate(20deg);
}

/* ── Dark mode global overrides ── */
body.dark-mode {
  background-color: #171211;
  color: #EBE5DF;
}
body.dark-mode html {
  background-color: #171211;
}

/* scrollbar */
body.dark-mode ::-webkit-scrollbar-track { background: #221C1A; }
body.dark-mode ::-webkit-scrollbar-thumb { background: #C5A880; }

/* header */
body.dark-mode .main-header {
  background-color: rgba(23, 18, 17, 0.9);
  border-bottom-color: rgba(197, 168, 128, 0.15);
}
body.dark-mode .logo-initials,
body.dark-mode .brand-name,
body.dark-mode .nav-link {
  color: #EBE5DF;
}
body.dark-mode .nav-link:hover { color: #C5A880; }
body.dark-mode .mobile-menu-toggle .bar { background-color: #EBE5DF; }

/* announcement bar */
body.dark-mode .announcement-bar { background-color: #171211; }

/* buttons */
body.dark-mode .btn-primary {
  background-color: #C5A880;
  color: #171211;
}
body.dark-mode .btn-primary:hover {
  background-color: #B0926A;
  color: #171211;
}
body.dark-mode .btn-outline {
  border-color: #C5A880;
  color: #C5A880;
}
body.dark-mode .btn-outline:hover {
  background-color: #C5A880;
  color: #171211;
}

/* sections */
body.dark-mode .section-title { color: #EBE5DF; }
body.dark-mode .section-desc { color: #D5BD9C; }
body.dark-mode .section-subtitle { color: #C5A880; }

/* service cards */
body.dark-mode .service-card {
  background-color: #2E2725;
  border-color: rgba(197, 168, 128, 0.2);
}
body.dark-mode .service-name { color: #EBE5DF; }
body.dark-mode .service-detail { color: #D5BD9C; }
body.dark-mode .service-duration { color: #C5A880; }
body.dark-mode .service-price { color: #C5A880; }

/* testimonials */
body.dark-mode .testimonial-card {
  background-color: #2E2725;
  border-color: rgba(197, 168, 128, 0.15);
}
body.dark-mode .testimonial-text { color: #EBE5DF; }
body.dark-mode .reviewer-name { color: #EBE5DF; }
body.dark-mode .reviewer-status { color: #C5A880; }
body.dark-mode .reviewer-avatar {
  background-color: #C5A880;
  color: #171211;
}

/* highlights */
body.dark-mode .circle-outer { border-color: rgba(197, 168, 128, 0.4); }
body.dark-mode .circle-inner { background-color: #2E2725; color: #C5A880; }
body.dark-mode .highlight-circle-item span { color: #D5BD9C; }

/* about / divider sections */
body.dark-mode .about-section { background-color: #221C1A; }
body.dark-mode .about-section .section-title,
body.dark-mode .about-section .section-desc { color: #EBE5DF; }
body.dark-mode .stat-achievement { border-color: rgba(197, 168, 128, 0.2); }
body.dark-mode .stat-number { color: #C5A880; }
body.dark-mode .stat-label-text { color: #D5BD9C; }

/* booking wizard */
body.dark-mode .booking-form-wizard { background-color: #1E1917; }
body.dark-mode .wizard-step { border-color: rgba(197, 168, 128, 0.15); }
body.dark-mode .form-group label { color: #D5BD9C; }
body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
  background-color: #2E2725;
  border-color: rgba(197, 168, 128, 0.2);
  color: #EBE5DF;
}
body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
  color: rgba(213, 189, 156, 0.5);
}
body.dark-mode .booking-summary-banner {
  background-color: #2E2725;
  border-color: rgba(197, 168, 128, 0.2);
}
body.dark-mode .step-indicator.active .step-circle { background-color: #C5A880; }
body.dark-mode .step-indicator.done .step-circle { background-color: #6E8A75; }

/* highlights / nav modal */
body.dark-mode .highlight-modal {
  background-color: rgba(0,0,0,0.8);
}
body.dark-mode .highlight-modal-card {
  background-color: #2E2725;
  color: #EBE5DF;
}
body.dark-mode .modal-headline { color: #EBE5DF; }
body.dark-mode .modal-subline { color: #D5BD9C; }
body.dark-mode .modal-close-btn { color: #EBE5DF; }

/* footer */
body.dark-mode .main-footer { background-color: #0F0D0C; }
body.dark-mode .footer-about,
body.dark-mode .footer-links-column a,
body.dark-mode .footer-hours-column p { color: #D5BD9C; }

/* mobile menu open */
body.dark-mode .nav-menu.active {
  background-color: #221C1A;
}

/* ── Products / Boutique page dark mode ── */
body.dark-mode .catalog-section { background-color: #171211; }
body.dark-mode .shop-tab {
  background-color: #2E2725;
  border-color: rgba(197, 168, 128, 0.2);
  color: #D5BD9C;
}
body.dark-mode .shop-tab.active,
body.dark-mode .shop-tab:hover {
  background-color: #C5A880;
  color: #171211;
}
body.dark-mode .shop-search-wrapper {
  background-color: #2E2725;
  border-color: rgba(197, 168, 128, 0.2);
  color: #D5BD9C;
}
body.dark-mode .shop-search-wrapper input {
  background: none;
  color: #EBE5DF;
}
body.dark-mode .shop-search-wrapper input::placeholder { color: rgba(213,189,156,0.5); }
body.dark-mode .shop-product-card {
  background-color: #2E2725 !important;
  border-color: rgba(197, 168, 128, 0.2) !important;
}
body.dark-mode .product-image-placeholder {
  background-color: #221C1A !important;
  color: #EBE5DF !important;
}
body.dark-mode .product-category-label { color: #C5A880 !important; }
body.dark-mode .product-title-text { color: #EBE5DF !important; }
body.dark-mode .product-description-text { color: #D5BD9C !important; }
body.dark-mode .product-price-value { color: #C5A880 !important; }

/* cart drawer */
body.dark-mode .cart-drawer {
  background-color: #221C1A;
  border-color: rgba(197, 168, 128, 0.15);
}
body.dark-mode .cart-drawer-header { border-bottom-color: rgba(197, 168, 128, 0.15); }
body.dark-mode .cart-drawer-header h3 { color: #EBE5DF; }
body.dark-mode .cart-close-btn { color: #D5BD9C; }
body.dark-mode .cart-item { border-bottom-color: rgba(197,168,128,0.1); }
body.dark-mode .cart-item-name { color: #EBE5DF; }
body.dark-mode .cart-item-price { color: #C5A880; }
body.dark-mode .cart-item-remove { color: #B56B6B; }
body.dark-mode .cart-drawer-footer { border-top-color: rgba(197,168,128,0.15); }
body.dark-mode .cart-subtotal-row { color: #EBE5DF; }
body.dark-mode .cart-shipping-note { color: #D5BD9C; }
body.dark-mode .empty-cart-msg { color: #D5BD9C; }

/* checkout modal */
body.dark-mode .checkout-modal-card {
  background-color: #221C1A;
  color: #EBE5DF;
}
body.dark-mode .checkout-modal-card .modal-title { color: #EBE5DF; }
body.dark-mode .checkout-modal-card .modal-subtitle { color: #D5BD9C; }
body.dark-mode .checkout-modal-card label { color: #D5BD9C; }
body.dark-mode .checkout-modal-card input,
body.dark-mode .checkout-modal-card textarea {
  background-color: #2E2725;
  border-color: rgba(197, 168, 128, 0.2);
  color: #EBE5DF;
}
body.dark-mode .checkout-modal-card input::placeholder,
body.dark-mode .checkout-modal-card textarea::placeholder { color: rgba(213,189,156,0.5); }

/* success overlay */
body.dark-mode .success-card {
  background-color: #221C1A;
  color: #EBE5DF;
}
body.dark-mode .success-title { color: #EBE5DF; }
body.dark-mode .success-subtitle { color: #D5BD9C; }
body.dark-mode .success-receipt-box {
  background-color: #2E2725;
  border-color: rgba(197,168,128,0.2);
}
body.dark-mode .receipt-row { color: #D5BD9C; }
body.dark-mode .receipt-row strong { color: #EBE5DF; }
body.dark-mode .text-gold { color: #C5A880; }

/* homepage product teaser section & theme toggle */
body.dark-mode #skincare-teaser-section,
body.dark-mode .products-teaser-section {
  background-color: #171211 !important;
  border-bottom-color: rgba(197, 168, 128, 0.15) !important;
}
body.dark-mode .shop-product-card {
  background-color: #2E2725 !important;
  border-color: rgba(197, 168, 128, 0.2) !important;
}
body.dark-mode .theme-toggle-btn {
  border-color: rgba(197, 168, 128, 0.4) !important;
  color: #C5A880 !important;
}
body.dark-mode .theme-toggle-btn:hover {
  background-color: rgba(197, 168, 128, 0.15) !important;
  color: #D5BD9C !important;
}


/* =========================================================
   DARK MODE - EXTENDED COVERAGE (Booking Wizard, Calendar,
   Sections, Modals, Bootcamp, Contact, Footer, Highlights)
   ========================================================= */

/* Booking Wizard */
body.dark-mode .booking-section {
  background-color: #1A1614;
  border-top-color: rgba(197,168,128,0.1);
  border-bottom-color: rgba(197,168,128,0.1);
}
body.dark-mode .booking-wizard-card {
  background-color: #221C1A;
  border-color: rgba(197,168,128,0.15);
}
body.dark-mode .wizard-progress {
  background-color: #171211;
  border-bottom-color: rgba(197,168,128,0.1);
}
body.dark-mode .wizard-panel { background-color: #221C1A; }
body.dark-mode .panel-title { color: #EBE5DF; }
body.dark-mode .panel-subtitle { color: #D5BD9C; }
body.dark-mode .wiz-service-select-item {
  background-color: #2E2725;
  border-color: rgba(197,168,128,0.2);
}
body.dark-mode .wiz-service-select-item:hover {
  background-color: #3A302D;
  border-color: #C5A880;
}
body.dark-mode .wiz-service-select-item.selected {
  background-color: rgba(197,168,128,0.12);
  border-color: #C5A880;
}
body.dark-mode .wiz-service-name { color: #EBE5DF; }
body.dark-mode .wiz-service-meta { color: #D5BD9C; }
body.dark-mode .wizard-selected-list {
  background-color: #1A1614;
  border-color: rgba(197,168,128,0.15);
}
body.dark-mode .empty-selection-msg { color: #D5BD9C; }
body.dark-mode .selected-item-row { color: #EBE5DF; }
body.dark-mode .selected-total-row { border-top-color: rgba(197,168,128,0.2); }
body.dark-mode .wizard-footer { border-top-color: rgba(197,168,128,0.12); }
body.dark-mode .calendar-wrapper {
  background-color: #2E2725;
  border-color: rgba(197,168,128,0.2);
}
body.dark-mode .calendar-title { color: #EBE5DF; }
body.dark-mode .calendar-nav-btn { color: #D5BD9C; }
body.dark-mode .calendar-nav-btn:hover { background-color: rgba(197,168,128,0.15); color: #C5A880; }
body.dark-mode .calendar-day-btn { color: #D5BD9C; }
body.dark-mode .calendar-day-btn.today { border-color: #C5A880; }
body.dark-mode .calendar-day-btn.selected-day { background-color: #C5A880 !important; color: #171211 !important; }
body.dark-mode .time-slots-wrapper {
  background-color: #1A1614;
  border-color: rgba(197,168,128,0.15);
}
body.dark-mode .time-slots-title { color: #EBE5DF; border-bottom-color: rgba(197,168,128,0.15); }
body.dark-mode .time-slot-btn {
  background-color: #2E2725;
  border-color: rgba(197,168,128,0.2);
  color: #D5BD9C;
}
body.dark-mode .time-slot-btn:hover:not(:disabled),
body.dark-mode .time-slot-btn.selected-slot { background-color: #C5A880; color: #171211; border-color: #C5A880; }
body.dark-mode .guest-details-form label { color: #D5BD9C; }
body.dark-mode .guest-details-form input,
body.dark-mode .guest-details-form textarea,
body.dark-mode .guest-details-form select {
  background-color: #2E2725;
  border-color: rgba(197,168,128,0.2);
  color: #EBE5DF;
}
body.dark-mode .guest-details-form input::placeholder,
body.dark-mode .guest-details-form textarea::placeholder { color: rgba(213,189,156,0.4); }
body.dark-mode .luxury-receipt { background-color: #2E2725; border-color: rgba(197,168,128,0.2); }
body.dark-mode .receipt-header { background-color: #171211; color: #C5A880; }
body.dark-mode .receipt-body, body.dark-mode .receipt-row { color: #D5BD9C; }
body.dark-mode .receipt-row strong { color: #EBE5DF; }
body.dark-mode .receipt-divider { border-color: rgba(197,168,128,0.15); }
body.dark-mode .receipt-footer { color: #D5BD9C; }
body.dark-mode .summary-count, body.dark-mode .summary-total { color: #EBE5DF; }
body.dark-mode .about-desc { color: #D5BD9C; }
body.dark-mode .feature-item h4 { color: #EBE5DF; }
body.dark-mode .feature-item p { color: #D5BD9C; }
body.dark-mode .services-section {
  background-color: #1A1614;
  border-top-color: rgba(197,168,128,0.1);
  border-bottom-color: rgba(197,168,128,0.1);
}
body.dark-mode .tab-btn { background-color: #2E2725; border-color: rgba(197,168,128,0.2); color: #D5BD9C; }
body.dark-mode .tab-btn:hover { border-color: #C5A880; color: #C5A880; }
body.dark-mode .tab-btn.active { background-color: #C5A880; color: #171211; border-color: #C5A880; }
body.dark-mode .highlights-section { background-color: #171211; border-bottom-color: rgba(197,168,128,0.1); }
body.dark-mode .bootcamp-section { background-color: #1A1614; }
body.dark-mode .bootcamp-title { color: #EBE5DF; }
body.dark-mode .bootcamp-desc { color: #D5BD9C; }
body.dark-mode .b-highlight { color: #D5BD9C; }
body.dark-mode .bootcamp-pricing .price-box { background-color: #2E2725; border-color: rgba(197,168,128,0.2); }
body.dark-mode .price-box .tier-name { color: #D5BD9C; }
body.dark-mode .price-box .tier-price { color: #C5A880; }
body.dark-mode .price-box .tier-detail { color: rgba(213,189,156,0.7); }
body.dark-mode .next-cohort-box { background-color: rgba(197,168,128,0.1); border-color: rgba(197,168,128,0.2); color: #EBE5DF; }
body.dark-mode .contact-section { background-color: #171211; }
body.dark-mode .contact-desc { color: #D5BD9C; }
body.dark-mode .contact-detail-item h4 { color: #EBE5DF; }
body.dark-mode .contact-detail-item p, body.dark-mode .contact-detail-item a { color: #D5BD9C; }
body.dark-mode .contact-detail-item a:hover { color: #C5A880; }
body.dark-mode .icon-box { background-color: #2E2725; border-color: rgba(197,168,128,0.15); color: #C5A880; }
body.dark-mode .custom-modal .modal-content-card {
  background-color: #221C1A;
  color: #EBE5DF;
  border: 1px solid rgba(197,168,128,0.15);
}
body.dark-mode .custom-modal .modal-close { color: #D5BD9C; }
body.dark-mode .bootcamp-enroll-form label { color: #D5BD9C; }
body.dark-mode .bootcamp-enroll-form input, body.dark-mode .bootcamp-enroll-form select {
  background-color: #2E2725; border-color: rgba(197,168,128,0.2); color: #EBE5DF;
}
body.dark-mode .syllabus-timeline .week-marker { background-color: rgba(197,168,128,0.2); color: #C5A880; }
body.dark-mode .syllabus-timeline .week-details h4 { color: #EBE5DF; }
body.dark-mode .syllabus-timeline .week-details p { color: #D5BD9C; }
body.dark-mode .footer-links-column h4, body.dark-mode .footer-hours-column h4 { color: #EBE5DF; }
body.dark-mode .footer-copyright p { color: rgba(213,189,156,0.5); }
body.dark-mode .urgent-hours-note { color: #C5A880; }

/* ==========================================================================
   11. NEW INTERACTIVE & DYNAMIC LAYOUT STYLES
   ========================================================================== */

/* Scroll Progress Indicator */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-champagne) 0%, var(--color-champagne-dark) 100%);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Hero Ambient Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.particle-orb {
  position: absolute;
  border-radius: var(--border-radius-circle);
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(197, 168, 128, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: floatAround infinite alternate ease-in-out;
}
@keyframes floatAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, -40px) scale(1.1);
  }
}

/* Stats / Achievements Section */
.stats-section {
  background-color: var(--color-cream);
  border-top: 1px solid var(--color-sand-light);
  border-bottom: 1px solid var(--color-sand-light);
}
.stats-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-achievement {
  background-color: var(--color-white);
  border: 1px solid var(--color-sand-light);
  border-radius: var(--border-radius-lg);
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}
.stat-achievement:hover {
  transform: translateY(-5px);
  border-color: var(--color-champagne);
  box-shadow: 0 10px 20px rgba(34, 28, 26, 0.05);
}
.stat-icon-circle {
  width: 54px;
  height: 54px;
  background-color: rgba(197, 168, 128, 0.1);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-champagne-dark);
  font-size: 1.4rem;
  transition: var(--transition-smooth);
}
.stat-achievement:hover .stat-icon-circle {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  transform: scale(1.1);
}
.stat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-espresso);
  line-height: 1;
}
.stat-label-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-espresso);
  opacity: 0.6;
}

/* Service & Product Card 3D Tilt Wrapper */
.service-card, .shop-product-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Floating Action Buttons */
.floating-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: var(--transition-smooth);
}
.floating-wa-btn:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}
.wa-pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-circle);
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.back-to-top-btn {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-espresso);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
}
.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top-btn:hover {
  background-color: var(--color-champagne);
  color: var(--color-espresso);
}

/* Promo Toast Notification */
.promo-toast {
  position: fixed;
  bottom: -150px;
  left: 30px;
  background-color: var(--color-espresso);
  color: var(--color-cream);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  max-width: 400px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), bottom 0.5s ease;
}
.promo-toast.show {
  bottom: 30px;
}
.toast-icon {
  font-size: 1.8rem;
  color: var(--color-champagne);
}
.toast-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toast-content strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-champagne);
}
.toast-content p {
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.85;
}
.toast-close {
  background: none;
  border: none;
  color: var(--color-cream);
  opacity: 0.6;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
  align-self: flex-start;
  margin-top: -6px;
  margin-right: -10px;
}
.toast-close:hover {
  opacity: 1;
}

/* CTA Shimmer Reflection Animation */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: ctaShimmer 6s infinite linear;
  pointer-events: none;
}
@keyframes ctaShimmer {
  0% {
    transform: translate(-30%, -30%) rotate(45deg);
  }
  100% {
    transform: translate(30%, 30%) rotate(45deg);
  }
}

/* Dark Mode Overrides for New Elements */
body.dark-mode .stats-section {
  background-color: #1A1614;
  border-top-color: rgba(197, 168, 128, 0.1);
  border-bottom-color: rgba(197, 168, 128, 0.1);
}
body.dark-mode .stat-achievement {
  background-color: #2E2725;
  border-color: rgba(197, 168, 128, 0.2);
}
body.dark-mode .back-to-top-btn {
  background-color: #2E2725;
  color: #EBE5DF;
  border-color: rgba(197, 168, 128, 0.2);
}
body.dark-mode .back-to-top-btn:hover {
  background-color: #C5A880;
  color: #171211;
}
body.dark-mode .promo-toast {
  background-color: #2E2725;
  color: #EBE5DF;
  border-color: rgba(197, 168, 128, 0.2);
}
body.dark-mode .promo-toast .toast-icon,
body.dark-mode .promo-toast strong {
  color: #C5A880;
}

/* Typing Cursor Blink Animation */
.typing-cursor {
  font-weight: 300;
  color: var(--color-champagne-dark);
  margin-left: 4px;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
  from, to { color: transparent }
  50% { color: var(--color-champagne-dark); }
}
body.dark-mode .typing-cursor {
  color: #C5A880;
}
