/* Modern Premium Light Rest Restorative Architecture - A.J. Wellness SPA */

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

/* Cascade Layer Declarations */
@layer reset, base, theme, components, utilities;

@layer reset {
  /* Box sizing and margin resets */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* Prevent text size adjustments and set base behavior */
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    accent-color: var(--color-yellow);
    scrollbar-color: var(--color-yellow-light) var(--bg-deep);
    scrollbar-width: thin;
  }

  body {
    background-color: var(--bg-deep);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-block-size: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* Media elements aspect-ratio reservation to avoid CLS */
  img, video {
    display: block;
    max-inline-size: 100%;
    height: auto;
  }

  /* Text wrapping optimizations */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 500;
    text-wrap: balance;
    line-height: 1.25;
  }

  p {
    text-wrap: pretty;
    color: var(--text-muted);
  }

  /* Form control defaults */
  button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: transparent;
    border: none;
  }
}

@layer base {
  /* Tier 1 & 2 Design Tokens */
  :root {
    /* Color Palette */
    --color-pure-white: #ffffff;
    --color-obsidian: #0d110f;
    --color-dark-surface: #131916;
    --color-light-ivory: #f5f4f0;
    --color-sage-gray: #9ea4a0;
    
    /* Yellow/Gold Accents */
    --color-yellow: #dca842;
    --color-yellow-light: #ebd09c;
    --color-yellow-dark: #b58328;
    --color-yellow-pill: #e5b24d;
    --color-blue-accent: #58bdf2; /* Glowing water accent */
    --color-slate-grey: #666666;
    --color-border-subtle: rgba(255, 255, 255, 0.08);

    /* Semantic Mappings */
    --bg-deep: var(--color-obsidian);
    --bg-surface: rgba(255, 255, 255, 0.02);
    --bg-surface-opaque: var(--color-dark-surface);
    
    --text-dark: var(--color-light-ivory);
    --text-light: #e3e1db;
    --text-muted: var(--color-sage-gray);
    --accent: var(--color-yellow);
    --accent-hover: var(--color-yellow-dark);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Inter', sans-serif;

    /* Spacing System */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    --space-section: clamp(4rem, 8vw, 8rem);

    /* Layout Boundaries */
    --max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  /* Base interactive styles */
  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--accent);
  }

  /* Custom selection styling */
  ::selection {
    background-color: var(--accent);
    color: var(--color-obsidian);
  }
}

@layer theme {
  /* Layout utilities for main wrapper */
  main {
    flex-grow: 1;
  }

  .container {
    max-inline-size: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-lg);
  }

  /* Universal panel card */
  .premium-card {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease;
  }

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

  /* Custom Focus outline styles */
  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
  }
}

@layer components {
  /* Universal Header */
  .spa-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 17, 15, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-block-end: 1px solid var(--color-border-subtle);
    padding-block: var(--space-xs);
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--space-sm);
  }

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

  .logo-link {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
  }

  .logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    text-transform: uppercase;
    margin-block-start: var(--space-xs);
  }

  /* Nav menu */
  .nav-menu {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
    align-items: center;
  }

  .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-block: var(--space-xs);
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s ease;
  }

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

  /* Mobile menu toggle */
  .menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    background: none;
    border: none;
    z-index: 1010;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Pill Call Button matching screenshot precisely */
  .call-pill-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-obsidian);
    background-color: var(--color-yellow-pill);
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(229, 178, 77, 0.2);
    transition: all 0.3s ease;
  }

  .call-pill-btn:hover {
    background-color: var(--color-yellow-dark);
    box-shadow: 0 6px 15px rgba(181, 131, 40, 0.3);
    color: var(--color-obsidian);
  }

  /* Regular CTA Buttons */
  .btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }

  .btn-primary {
    background-color: var(--color-yellow-pill);
    color: var(--color-obsidian);
    border: 1px solid var(--color-yellow-pill);
  }

  .btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--color-border-subtle);
  }

  .btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* Sections base */
  .section {
    padding-block: var(--space-section);
    position: relative;
  }

  .section-header {
    text-align: center;
    max-width: 750px;
    margin-inline: auto;
    margin-block-end: var(--space-xxl);
    position: relative;
  }

  .section-tag {
    font-size: 0.75rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-block-end: var(--space-md);
    display: block;
    font-weight: 700;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-block-end: var(--space-md);
    font-weight: 500;
  }

  .section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    max-width: 600px;
    margin-inline: auto;
  }

  /* Huge overlay title text behind headers */
  .large-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.015);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    font-weight: 700;
  }

  /* Universal Footer */
  .spa-footer {
    background-color: #090c0b;
    border-block-start: 1px solid var(--color-border-subtle);
    padding-block: var(--space-xxl) var(--space-xl);
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xxl);
    margin-block-end: var(--space-xxl);
  }

  .footer-brand .logo-link {
    margin-block-end: var(--space-lg);
  }

  .footer-brand p {
    margin-block-end: var(--space-lg);
    line-height: 1.8;
  }

  .footer-socials {
    display: flex;
    gap: var(--space-md);
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-border-subtle);
    color: var(--text-dark);
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(220, 168, 66, 0.05);
  }

  .footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-block-end: var(--space-lg);
    position: relative;
    padding-block-end: var(--space-xs);
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent);
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-links a {
    color: var(--text-muted);
    transition: padding-left 0.3s ease, color 0.3s ease;
  }

  .footer-links a:hover {
    padding-inline-start: var(--space-xs);
    color: var(--accent);
  }

  .footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

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

  .footer-hours-list span:first-child {
    color: var(--text-dark);
  }

  .footer-bottom {
    border-block-start: 1px solid var(--color-border-subtle);
    padding-block-start: var(--space-xl);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.8rem;
  }

  .footer-legal-links {
    display: flex;
    gap: var(--space-lg);
  }
}

@layer utilities {
  /* Scroll reveal elements utility */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Light hover glow */
  .glow-hover {
    position: relative;
    z-index: 1;
  }

  .glow-hover::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle, rgba(220, 168, 66, 0.15) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    pointer-events: none;
  }

  .glow-hover:hover::before {
    opacity: 1;
  }

  /* Centered display helper */
  .text-center {
    text-align: center;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC Restoring Rest of Styles - Adjusted for Light Premium theme
   ========================================================================== */

/* --- HOME HERO SECTION (Redesigned Editorial Dark Theme) --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: var(--space-xxl);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(13, 17, 15, 0.8) 0%, rgba(13, 17, 15, 0.96) 60%),
              radial-gradient(circle at 80% 80%, rgba(220, 168, 66, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, rgba(13, 17, 15, 0.6) 0%, rgba(13, 17, 15, 0.98) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  text-align: left;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(220, 168, 66, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-block-end: var(--space-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #58bdf2;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #58bdf2;
  animation: pulse-ring-dot 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 0;
}

@keyframes pulse-ring-dot {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hero-tag-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-block-end: var(--space-md);
  color: var(--color-pure-white);
  font-family: var(--font-heading);
}

.elegant-text-gradient {
  background: linear-gradient(135deg, var(--color-pure-white) 30%, var(--color-yellow-light) 70%, var(--color-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}

.elegant-italic {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--color-yellow-light);
}

.hero-subtext {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-block-end: var(--space-xl);
  max-width: 540px;
}

/* Live Slot Widget Styling */
.live-slot-widget {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  padding: 1rem var(--space-lg);
  border-radius: var(--border-radius);
  margin-block-end: var(--space-xl);
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.slot-details {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.slot-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.slot-indicator-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse-ring-dot 1.8s infinite;
}

.slot-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-light-ivory);
}

.slot-text strong {
  color: var(--accent);
  font-weight: 600;
}

.slot-timer {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slot-timer span {
  font-family: monospace;
  color: var(--color-blue-accent);
  font-weight: 600;
}

/* Hero CTAs */
.hero-btns-group {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-obsidian);
  background: linear-gradient(135deg, var(--color-yellow-light) 0%, var(--color-yellow) 100%);
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(220, 168, 66, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(220, 168, 66, 0.4);
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
  color: var(--color-pure-white);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-light-ivory);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Right Column: Layered Collage Styling */
.hero-collage {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(220, 168, 66, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.collage-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 15, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

/* Main Frame (Reception Desk) */
.main-frame {
  width: 80%;
  height: 380px;
  left: 0;
  top: 20px;
  z-index: 2;
}

.main-frame:hover {
  z-index: 4;
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.main-frame:hover .collage-img {
  transform: scale(1.05);
}

/* Floating Sub Frame (AC Therapy Suite) */
.sub-frame {
  width: 55%;
  height: 250px;
  right: 0;
  bottom: 10px;
  z-index: 3;
  border: 2px solid rgba(220, 168, 66, 0.2);
}

.sub-frame:hover {
  z-index: 4;
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.sub-frame:hover .collage-img {
  transform: scale(1.05);
}

/* Floating Animations */
.floating-slow {
  animation: float-slow 6s ease-in-out infinite alternate;
}

.floating-fast {
  animation: float-fast 4s ease-in-out infinite alternate;
}

@keyframes float-slow {
  0% { transform: translateY(0) rotate(0.5deg); }
  100% { transform: translateY(-15px) rotate(-0.5deg); }
}

@keyframes float-fast {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.02); }
}

/* Glass Stamp Badge */
.collage-badge {
  position: absolute;
  left: 30%;
  bottom: 40px;
  z-index: 5;
  background: rgba(13, 17, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  box-shadow: 0 12px 35px rgba(220, 168, 66, 0.25);
}

.collage-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.collage-badge .badge-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--color-light-ivory);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-block-start: 4px;
  font-weight: 700;
  line-height: 1.2;
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-block: var(--space-xxl) var(--space-xl);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero-subtext {
    margin-inline: auto;
  }

  .live-slot-widget {
    margin-inline: auto;
    text-align: left;
  }

  .hero-btns-group {
    justify-content: center;
  }

  .hero-collage {
    height: 400px;
    max-width: 580px;
    margin-inline: auto;
  }

  .main-frame {
    height: 300px;
    top: 10px;
  }

  .sub-frame {
    height: 200px;
    bottom: 10px;
  }

  .collage-badge {
    width: 120px;
    height: 120px;
    bottom: 20px;
    left: 25%;
  }
}

@media (max-width: 480px) {
  .hero-collage {
    height: 300px;
  }

  .main-frame {
    height: 220px;
  }

  .sub-frame {
    height: 140px;
  }

  .collage-badge {
    width: 100px;
    height: 100px;
    bottom: 10px;
    left: 20%;
  }
  
  .collage-badge .badge-number {
    font-size: 1.4rem;
  }
  
  .collage-badge .badge-label {
    font-size: 0.5rem;
  }
}

.scroll-down-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: block;
}

.mouse-icon {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  display: block;
  width: 4px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  50% { top: 18px; opacity: 0; }
  100% { top: 8px; opacity: 1; }
}

/* --- PHILOSOPHY SECTION --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.philosophy-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.philosophy-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  margin-block-end: var(--space-lg);
  color: var(--text-muted);
}

.philosophy-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border-subtle);
  z-index: 2;
}

.philosophy-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.philosophy-image-container:hover .philosophy-image {
  transform: scale(1.05);
}

/* --- SERVICE FLOATING PHOTO CARDS GRID (Aesthetics from screenshot 2) --- */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-photo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
  margin-block-end: 2rem; /* Give space for the floating cards at the bottom */
}

.service-photo-wrapper {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  aspect-ratio: 4 / 3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.service-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-floating-box {
  position: absolute;
  bottom: -25px;
  left: 5%;
  width: 90%;
  background-color: var(--bg-surface);
  padding: 1.5rem var(--space-md);
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  z-index: 10;
}

.service-floating-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service-photo-card:hover .service-floating-box {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Extra spacing details page for listing services directly */
.service-card-meta-line {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-block-start: 4px;
  display: block;
}

/* --- TESTIMONIALS --- */
.testimonials-container {
  max-width: 750px;
  margin-inline: auto;
}

.testimonial-card {
  text-align: center;
  padding: var(--space-xxl) !important;
}

.rating-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-block-end: var(--space-md);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin-block-end: var(--space-xl);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-style: normal;
}

.author-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.author-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-block-start: 4px;
}

/* --- CTA BANNER --- */
.cta-banner {
  padding-block: var(--space-xl);
}

.cta-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  padding: var(--space-xxl) !important;
}

.cta-banner-content {
  max-width: 600px;
}

.cta-banner-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-block-end: var(--space-sm);
  font-family: var(--font-heading);
}

.cta-banner-content p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- SERVICES FILTERS & SEARCH --- */
.services-control-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-block-end: var(--space-xxl);
}

.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  border-block-end: 1px solid var(--color-border-subtle);
  padding-block-end: var(--space-md);
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.filter-btn.active, .filter-btn:hover {
  color: var(--accent);
  background-color: rgba(220, 168, 66, 0.08);
}

.filters-secondary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: end;
}

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

.filter-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.select-styled {
  background-color: var(--bg-deep);
  border: 1px solid var(--color-border-subtle);
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  color: var(--text-dark);
}

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

.range-slider {
  flex-grow: 1;
  accent-color: var(--accent);
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.range-val {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  min-width: 60px;
  text-align: right;
}

/* --- SERVICES LIST GRID --- */
.treatments-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.treatment-menu-item {
  display: flex;
  gap: var(--space-lg);
  background-color: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  align-items: center;
  margin-block-end: var(--space-md);
}

.treatment-menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
}

.treatment-img-wrapper {
  width: 180px;
  height: 145px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-border-subtle);
}

.treatment-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-menu-item:hover .treatment-img-wrapper img {
  transform: scale(1.06);
}

.treatment-info {
  flex-grow: 1;
}

.treatment-name {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-block-end: var(--space-xs);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 500;
}

.treatment-price-tag {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  margin-inline-start: var(--space-md);
}

.treatment-meta-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-block-end: var(--space-sm);
  display: block;
  font-weight: 600;
}

.treatment-menu-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- ABOUT US STYLES --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xxl);
  align-items: center;
}

.about-intro-img {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border-subtle);
}

.about-intro-img img {
  width: 100%;
  object-fit: cover;
}

.expert-therapists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.therapist-profile-card {
  text-align: center;
}

.therapist-avatar-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-inline: auto;
  overflow: hidden;
  border: 2px solid var(--accent);
  margin-block-end: var(--space-lg);
  box-shadow: 0 4px 15px rgba(220, 168, 66, 0.15);
}

.therapist-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapist-name {
  font-size: 1.3rem;
  color: var(--text-dark);
}

.therapist-specialty {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-block-end: var(--space-sm);
  display: block;
  font-weight: 600;
}

.therapist-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- WELLNESS DOSHA QUIZ --- */
.quiz-widget-box {
  max-width: 650px;
  margin-inline: auto;
}

.quiz-progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  margin-block-end: var(--space-xxl);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 0;
  background-color: var(--accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: stepFade 0.4s ease-in-out;
}

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

.quiz-step-title {
  font-size: 1.5rem;
  margin-block-end: var(--space-lg);
  color: var(--text-dark);
  text-align: center;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-block-end: var(--space-xl);
}

.quiz-option-label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background-color: var(--bg-deep);
  border: 1px solid var(--color-border-subtle);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-option-label:hover {
  border-color: rgba(220, 168, 66, 0.3);
  background-color: rgba(220, 168, 66, 0.02);
}

.quiz-option-label:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background-color: rgba(220, 168, 66, 0.05);
}

.quiz-option-text {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.quiz-nav-btns {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
}

.quiz-results-card {
  display: none;
  text-align: center;
}

.quiz-results-card.active {
  display: block;
  animation: stepFade 0.6s ease-in-out;
}

.recommended-rit-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border-subtle);
  margin-block-end: var(--space-lg);
}

.results-tea-highlight {
  font-style: italic;
  color: var(--accent);
  margin-block: var(--space-md);
  display: block;
}

/* --- CONTACT & APPOINTMENT BOOKING --- */
.booking-funnel-panel {
  max-width: 750px;
  margin-inline: auto;
}

.booking-progress-header {
  display: flex;
  justify-content: space-between;
  margin-block-end: var(--space-xxl);
  position: relative;
}

.booking-progress-header::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-border-subtle);
  z-index: 1;
}

.progress-step {
  position: relative;
  z-index: 2;
  background-color: var(--bg-deep);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--color-border-subtle);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.progress-step.active {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--bg-surface);
  box-shadow: 0 0 10px rgba(220, 168, 66, 0.3);
}

.progress-step.completed {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--color-pure-white);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: stepFade 0.4s ease-in-out;
}

.form-step-title {
  font-size: 1.4rem;
  margin-block-end: var(--space-lg);
  color: var(--text-dark);
  border-block-end: 1px solid var(--color-border-subtle);
  padding-block-end: var(--space-xs);
  font-family: var(--font-heading);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-block-end: var(--space-lg);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-block-end: var(--space-lg);
}

.form-field label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.form-field input, .form-field select, .form-field textarea {
  background-color: var(--bg-deep);
  border: 1px solid var(--color-border-subtle);
  padding: 0.85rem var(--space-md);
  border-radius: 4px;
  color: var(--text-dark);
  width: 100%;
  transition: border-color 0.3s ease;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.form-field input.input-error {
  border-color: #e05353;
}

/* Radio Cards Therapist Grid */
.therapist-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-block-end: var(--space-lg);
}

.therapist-radio-card {
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius);
  background-color: var(--bg-deep);
  padding: var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.therapist-radio-card:hover {
  border-color: rgba(220, 168, 66, 0.3);
}

.therapist-radio-card:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background-color: rgba(220, 168, 66, 0.05);
}

.radio-card-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-inline: auto;
  overflow: hidden;
  margin-block-end: var(--space-sm);
  border: 1px solid var(--color-border-subtle);
}

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

.radio-card-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  color: var(--text-dark);
}

.radio-card-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.booking-success-message {
  display: none;
  text-align: center;
  padding: var(--space-xxl) !important;
}

.booking-success-message h2 {
  font-size: 2.2rem;
  margin-block-end: var(--space-md);
  font-family: var(--font-heading);
  color: var(--color-yellow-dark);
}

.success-details-box {
  background-color: var(--bg-deep);
  border: 1px solid var(--color-border-subtle);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  max-width: 500px;
  margin-inline: auto;
  margin-block: var(--space-xl);
  text-align: left;
}

.success-details-box p {
  margin-block-end: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.success-details-box strong {
  color: var(--accent);
}

/* --- FAQ ACCORDIONS --- */
.faq-accordion-box {
  max-width: 750px;
  margin-inline: auto;
}

.accordion-item {
  border-block-end: 1px solid var(--color-border-subtle);
  margin-block-end: var(--space-md);
}

.accordion-title-btn {
  width: 100%;
  text-align: left;
  padding-block: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title-btn span:last-child {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

/* Native details element styled similarly */
details.accordion-item {
  border-block-end: 1px solid var(--color-border-subtle);
  margin-block-end: var(--space-md);
}

details.accordion-item summary {
  padding-block: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.accordion-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

details.accordion-item[open] summary::after {
  content: '-';
  transform: rotate(180deg);
}

details.accordion-item .accordion-content-panel {
  animation: slideDown 0.3s ease-out;
}

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

.accordion-content-panel {
  padding-block-end: var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Map area styling */
.location-map-wrapper {
  height: 350px;
  background-color: var(--bg-surface);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.location-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--color-dark-surface) 0%, var(--color-obsidian) 100%);
  position: relative;
}

.map-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
}

.map-pin-icon {
  font-size: 2.5rem;
  color: var(--accent);
  animation: floatPin 2s infinite ease-in-out;
  margin-block-end: var(--space-sm);
  z-index: 2;
}

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

.location-details-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-block-end: var(--space-xxl);
}

/* RESPONSIVE BREAKPOINTS (ADDITIONAL) */
@media (max-width: 992px) {
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expert-therapists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal scrolling universally */
  html, body {
    overflow-x: hidden;
  }
  .section {
    overflow: hidden;
  }
  
  /* Responsive Navigation Header */
  .menu-toggle {
    display: flex;
  }
  
  #header-call-btn {
    display: none;
  }
  
  .mobile-only-item {
    display: block !important;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(13, 17, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-block-start: 1px solid var(--color-border-subtle);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Hamburger toggle animation when active */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Spacing and alignments */
  .hero-section {
    min-height: 70vh;
    padding-block: var(--space-xl) var(--space-xxl);
  }
  
  .hero-title {
    margin-block-end: var(--space-md);
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .signature-grid {
    grid-template-columns: 1fr;
    margin-block-end: 2rem;
  }
  .service-photo-card {
    margin-block-end: 3.5rem;
  }
  .expert-therapists-grid {
    grid-template-columns: 1fr;
  }
  .filters-secondary-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .treatments-menu-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .treatment-menu-item {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    padding: var(--space-sm);
  }
  .treatment-img-wrapper {
    width: 100%;
    height: 185px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .therapist-radio-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .location-details-box {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .footer-brand, .footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-brand .logo-wrapper {
    justify-content: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-hours-list li {
    justify-content: center;
    gap: var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }
}

/* --- VIRTUAL TOUR & REAL GALLERY WIDGET --- */
.tour-widget-container {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 0;
  background-color: var(--color-dark-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-block-start: var(--space-xl);
}

.tour-tabs-column {
  display: flex;
  flex-direction: column;
  background-color: #090c0b;
  border-inline-end: 1px solid var(--color-border-subtle);
  padding: var(--space-md);
  gap: var(--space-xs);
  justify-content: center;
}

.tour-tab-btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.tour-tab-btn:hover {
  background-color: rgba(220, 168, 66, 0.03);
}

.tour-tab-btn.active {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border-subtle);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tour-tab-num {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(220, 168, 66, 0.4);
  transition: color 0.3s ease;
}

.tour-tab-btn.active .tour-tab-num {
  color: var(--accent);
}

.tour-tab-meta {
  display: flex;
  flex-direction: column;
}

.tour-tab-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.tour-tab-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-block-start: 4px;
}

.tour-display-frame {
  position: relative;
  overflow: hidden;
  background-color: #0c0c0c; /* Dark background to showcase high contrast blue illuminated rooms */
  min-height: 480px;
}

.tour-display-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 1;
}

.tour-display-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.tour-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.tour-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-display-slide.active img {
  transform: scale(1.03);
}

.tour-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  color: var(--color-pure-white);
  z-index: 3;
}

.tour-caption-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-pure-white);
  margin-block-end: var(--space-xs);
  font-weight: 500;
}

.tour-caption-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 580px;
}

@media (max-width: 992px) {
  .tour-widget-container {
    grid-template-columns: 1fr;
  }
  
  .tour-tabs-column {
    border-inline-end: none;
    border-block-end: 1px solid var(--color-border-subtle);
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: var(--space-sm);
    gap: var(--space-sm);
  }
  
  .tour-tab-btn {
    flex: 0 0 auto;
    width: auto;
    padding: var(--space-sm) var(--space-md);
  }
  
  .tour-display-frame {
    min-height: 380px;
  }
}

/* ==========================================================================
   WHATSAPP FLOATING TOGGLE WIDGET
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  background-color: #20ba5a;
  color: #ffffff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Elegant Tooltip overlay */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--bg-surface);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border-subtle);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Triangle indicator for tooltip */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--bg-surface);
  border-right: 1px solid var(--color-border-subtle);
  border-top: 1px solid var(--color-border-subtle);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pulsing effect keyframe */
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-tooltip {
    display: none; /* Hide tooltips on mobile to save screen space */
  }
}

/* ==========================================================================
   SPECIAL COMBO OFFERS & LUXURY MEMBERSHIPS
   ========================================================================== */
.combo-banner {
  background: var(--bg-surface-opaque);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xxl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: var(--space-xxl);
  align-items: center;
  margin-block-start: var(--space-xl);
}

.combo-left-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.combo-left-info .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: left;
  margin-block-end: 0;
  line-height: 1.2;
}

.combo-cards-wrapper {
  background-color: var(--bg-deep);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: var(--space-xl);
  gap: var(--space-xl);
  position: relative;
}

.combo-card-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.combo-card-column:first-child {
  border-inline-end: 1px solid var(--color-border-subtle);
  padding-inline-end: var(--space-xl);
}

.combo-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-block-end: 4px;
}

.combo-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-block-end: var(--space-md);
}

.combo-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: 0;
  margin: 0;
}

.combo-items-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.combo-items-list li::before {
  content: '• ';
  color: var(--accent);
  font-weight: 700;
}

/* Membership Grid Styles */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-block-start: var(--space-xl);
  align-items: stretch;
}

.membership-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl) var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: var(--card-shadow);
}

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

.membership-card.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(220, 168, 66, 0.1);
}

.membership-card.featured:hover {
  box-shadow: 0 15px 40px rgba(220, 168, 66, 0.2);
}

.membership-popular-badge {
  position: absolute;
  top: -15px;
  background-color: var(--color-yellow-pill);
  color: var(--color-obsidian);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(229, 178, 77, 0.25);
  z-index: 10;
}

.membership-card-icon {
  margin-block-end: var(--space-md);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

.membership-card-icon svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.membership-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-block-end: var(--space-lg);
}

.membership-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
  width: 100%;
}

.membership-price-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.membership-price-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
  align-self: center;
}

.membership-card-btn {
  margin-block-start: auto;
  width: 100%;
  border-radius: 4px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .combo-banner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
  }
  .combo-left-info {
    align-items: center;
    text-align: center;
  }
  .combo-left-info .section-title {
    text-align: center;
  }
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .combo-cards-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
  }
  .combo-card-column:first-child {
    border-inline-end: none;
    border-block-end: 1px solid var(--color-border-subtle);
    padding-inline-end: 0;
    padding-block-end: var(--space-lg);
    margin-block-end: var(--space-xs);
  }
  .membership-grid {
    grid-template-columns: 1fr;
  }
}

/* Treatment Price Option Groups */
.treatment-price-group {
  display: flex;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-duration-option {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--bg-deep);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--color-border-subtle);
}

.treatment-price-tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .treatment-name {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  .treatment-price-group {
    width: 100%;
    flex-wrap: wrap;
    gap: var(--space-xs);
  }
}
