/* Modern Premium Luxurious Celestial Dark Architecture - Real Pearl Spa */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&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-gold);
    scrollbar-color: var(--color-gold-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: #1B1915; /* Polished Bronze/Gold Surface */
    --color-cream-bg: #0F0E0C; /* Rich Velvet Charcoal Black Background */
    --color-dark-grey: #F5EFE6; /* Creamy Ivory primary text */
    --color-charcoal-text: #FFFDF9; /* Glistening Pearl text */
    
    /* Gold Accents (matching screenshot logo and buttons) */
    --color-gold: #E6C280;
    --color-gold-light: #F3DCA3;
    --color-gold-dark: #CBA460;
    --color-gold-pill: #E6C280;
    --color-blue-accent: #F3DCA3; /* Elegant gold accent for subheadings */
    --color-slate-grey: #C5BEB4;
    --color-border-subtle: rgba(230, 194, 128, 0.22);

    /* Semantic Mappings */
    --bg-deep: var(--color-cream-bg);
    --bg-surface: var(--color-pure-white);
    
    --text-dark: var(--color-dark-grey);
    --text-light: var(--color-charcoal-text);
    --text-muted: var(--color-slate-grey);
    --accent: var(--color-gold);
    --accent-hover: var(--color-gold-dark);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', '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 20px rgba(0, 0, 0, 0.15);
    --hover-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  }

  /* 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-pure-white);
  }
}

@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);
    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(27, 25, 21, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    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-cream-bg);
    background-color: var(--accent);
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(230, 194, 128, 0.25);
    transition: all 0.3s ease;
  }

  .call-pill-btn:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 15px rgba(197, 159, 89, 0.35);
    color: var(--color-cream-bg);
  }

  /* 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(--accent);
    color: var(--color-cream-bg);
    border: 1px solid var(--accent);
  }

  .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(232, 239, 239, 0.03);
    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: var(--color-pure-white);
    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(230, 194, 128, 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(230, 194, 128, 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 (Premium Celestial Dark Split Grid) --- */
.hero-section {
  position: relative;
  min-height: calc(92vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/spa_sanctum.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: linear-gradient(
    to bottom,
    rgba(15, 14, 12, 0.45) 0%,
    rgba(15, 14, 12, 0.95) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-xxl);
  align-items: center;
  text-align: left;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-block-end: var(--space-md);
  font-weight: 700;
  background: rgba(230, 194, 128, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(230, 194, 128, 0.2);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-block-end: var(--space-sm);
  color: var(--text-light);
  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-blue-accent);
  margin-block-end: var(--space-lg);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-block-end: var(--space-xl);
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.hero-contact-pill-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-cream-bg);
  background-color: var(--accent);
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(230, 194, 128, 0.3);
  transition: all 0.3s ease;
}

.hero-contact-pill-btn:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(197, 159, 89, 0.4);
  color: var(--color-cream-bg);
  transform: translateY(-2px);
}

/* Floating Centerpiece Card */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-visual-card {
  position: relative;
  width: 95%;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(230, 194, 128, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 
              0 0 40px rgba(230, 194, 128, 0.05);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(230, 194, 128, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.hero-visual-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55), 
              0 0 50px rgba(230, 194, 128, 0.1);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Micro floating badges */
.hero-floating-badge {
  position: absolute;
  background: rgba(27, 25, 21, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(230, 194, 128, 0.25);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: badgeFloat 4s infinite ease-in-out;
  white-space: nowrap;
}

.hero-floating-badge.badge-top-left {
  top: -15px;
  left: -5%;
}

.hero-floating-badge.badge-bottom-right {
  bottom: -15px;
  right: -5%;
  animation-delay: 2s;
}

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

/* Responsive Grid stack */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual-wrapper {
    margin-block-start: var(--space-lg);
  }
  .hero-floating-badge.badge-top-left {
    left: 2%;
  }
  .hero-floating-badge.badge-bottom-right {
    right: 2%;
  }
}

.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(230, 194, 128, 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(0, 0, 0, 0.05);
  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);
  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(230, 194, 128, 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(230, 194, 128, 0.3);
  background-color: rgba(230, 194, 128, 0.02);
}

.quiz-option-label:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background-color: rgba(230, 194, 128, 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(230, 194, 128, 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: #E65A5A;
}

/* 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(230, 194, 128, 0.3);
}

.therapist-radio-card:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background-color: rgba(230, 194, 128, 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(--accent);
}

.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(--bg-surface) 0%, var(--bg-deep) 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(255, 255, 255, 0.98);
    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 20px rgba(0, 0, 0, 0.05);
    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-pure-white);
  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: var(--color-cream-bg);
  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(230, 194, 128, 0.03);
}

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

.tour-tab-num {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(230, 194, 128, 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: linear-gradient(135deg, rgba(230, 194, 128, 0.08) 0%, rgba(27, 25, 21, 0.4) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xxl);
  box-shadow: var(--card-shadow);
  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-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  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(230, 194, 128, 0.1);
}

.membership-card.featured:hover {
  box-shadow: 0 15px 40px rgba(230, 194, 128, 0.2);
}

.membership-popular-badge {
  position: absolute;
  top: -15px;
  background-color: var(--accent);
  color: var(--color-pure-white);
  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(230, 194, 128, 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);
  }
}
