/* ==========================================================
   LIGHT LIFE SPA - LUXURY CREAM DESIGN SYSTEM
   ========================================================== */

:root {
  /* Cream & Warm Earth Palette */
  --bg-primary: #FBF8F3;
  --bg-secondary: #F5EFEB;
  --bg-tertiary: #EDE4D8;
  --bg-warm-sand: #E4D7C5;

  /* Card Surfaces & Glassmorphism */
  --surface-card: rgba(255, 255, 255, 0.78);
  --surface-card-solid: #FFFFFF;
  --surface-glass-border: rgba(197, 168, 128, 0.28);
  --surface-card-hover: rgba(255, 255, 255, 0.95);

  /* Gold & Warm Metallic Accents */
  --gold-primary: #C5A880;
  --gold-dark: #9E7B54;
  --gold-deep: #7F5E39;
  --gold-light: #E8D7C0;
  --gold-shimmer: #F5E8D6;

  /* Text & Deep Truffle Contrast */
  --text-main: #2A231F;
  --text-secondary: #5C524B;
  --text-muted: #8E8278;
  --text-light-cream: #FAF6F0;

  /* State Colors */
  --color-success: #52795D;
  --color-success-bg: #EAF2EC;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-brand: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Elevations */
  --shadow-sm: 0 4px 14px rgba(60, 45, 35, 0.04);
  --shadow-md: 0 10px 30px rgba(60, 45, 35, 0.07);
  --shadow-lg: 0 20px 50px rgba(60, 45, 35, 0.11);
  --shadow-gold: 0 8px 25px rgba(197, 168, 128, 0.28);

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Floating Lights (Soft Aura Blobs) */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.65;
  animation: floatAura 20s infinite alternate ease-in-out;
}

.glow-top {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 215, 192, 0.85) 0%, rgba(247, 239, 235, 0) 70%);
  top: -150px;
  right: -100px;
}

.glow-middle {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 215, 197, 0.7) 0%, rgba(251, 248, 243, 0) 70%);
  top: 45%;
  left: -200px;
  animation-delay: -7s;
}

.glow-bottom {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(235, 222, 205, 0.6) 0%, rgba(247, 239, 235, 0) 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: -12s;
}

@keyframes floatAura {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

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

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-glass-border);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-main);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAF6F0 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  box-shadow: 0 4px 12px rgba(158, 123, 84, 0.15);
  transition: transform 0.4s ease;
}

.brand-logo:hover .logo-mark {
  transform: rotate(15deg) scale(1.05);
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

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

.brand-name {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold-dark);
}

/* Status Badge */
.header-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  background: rgba(197, 168, 128, 0.14);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-dark);
  box-shadow: 0 0 0 0 rgba(158, 123, 84, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(158, 123, 84, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(158, 123, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(158, 123, 84, 0); }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sound-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--surface-glass-border);
  border-radius: 30px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sound-toggle-btn:hover {
  background: #FFFFFF;
  color: var(--gold-dark);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.sound-toggle-btn.playing {
  background: var(--bg-tertiary);
  color: var(--gold-dark);
  border-color: var(--gold-primary);
}

.sound-toggle-btn.playing .sound-waves {
  animation: wavePulse 1.2s infinite ease-in-out alternate;
}

@keyframes wavePulse {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

.sound-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.header-phone-link svg {
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
}

.header-phone-link:hover {
  background: rgba(197, 168, 128, 0.12);
  color: var(--gold-deep);
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.primary-btn:hover {
  background: linear-gradient(135deg, #CEB38D 0%, var(--gold-deep) 100%);
  box-shadow: 0 10px 25px rgba(158, 123, 84, 0.38);
  transform: translateY(-2px);
}

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

.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 6rem;
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(251, 248, 243, 0.88) 0%,
    rgba(247, 242, 234, 0.92) 50%,
    rgba(251, 248, 243, 0.98) 100%
  );
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
}

.flower-icon {
  color: var(--gold-primary);
  font-size: 0.7rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title .italic-serif {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.75;
}

.hero-subtitle strong {
  color: var(--gold-deep);
  font-weight: 600;
}

/* Countdown Wrapper */
.countdown-wrapper {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--surface-glass-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  max-width: 620px;
  margin: 0 auto 2.6rem;
}

.countdown-header {
  margin-bottom: 1.2rem;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.time-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 0.8rem 0.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-primary) 100%);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.time-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.time-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.time-unit {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.time-separator {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-primary);
  opacity: 0.7;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.luxury-gold-btn {
  background: linear-gradient(135deg, #D4B68F 0%, #A48057 100%);
  color: #FFFFFF;
  padding: 0.95rem 2rem;
  font-size: 0.96rem;
  box-shadow: 0 10px 28px rgba(164, 128, 87, 0.35);
}

.luxury-gold-btn:hover {
  background: linear-gradient(135deg, #DEBE95 0%, #8D6B44 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(164, 128, 87, 0.45);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: buttonShine 4.5s infinite ease-in-out;
}

@keyframes buttonShine {
  0% { left: -75%; }
  30% { left: 130%; }
  100% { left: 130%; }
}

.whatsapp-btn {
  background: rgba(255, 255, 255, 0.88);
  color: #128C7E;
  border: 1px solid rgba(18, 140, 126, 0.28);
  padding: 0.95rem 1.8rem;
  font-size: 0.96rem;
}

.whatsapp-btn:hover {
  background: #128C7E;
  color: #FFFFFF;
  border-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.25);
}

.outline-btn {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--surface-glass-border);
  padding: 0.95rem 1.8rem;
  font-size: 0.96rem;
}

.outline-btn:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--gold-primary);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-icon-right {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.outline-btn:hover .btn-icon-right {
  transform: translateY(3px);
}

/* Maintenance Notice Box */
.maintenance-notice-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  max-width: 740px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.notice-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.notice-icon svg {
  width: 20px;
  height: 20px;
}

.notice-text {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.notice-text strong {
  color: var(--text-main);
}

/* ==========================================================
   RITUALS & CARE CATALOG SECTION
   ========================================================== */

.rituals-section {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--surface-glass-border);
  border-bottom: 1px solid var(--surface-glass-border);
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
}

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

.sub-heading {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

/* Rituals Grid */
.rituals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.ritual-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.ritual-card:hover {
  transform: translateY(-8px);
  background: var(--surface-card-solid);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-lg);
}

.ritual-card.featured-ritual {
  border: 1.5px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
  position: relative;
}

.card-image-wrap {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ritual-card:hover .card-img {
  transform: scale(1.06);
}

/* Custom Visual for Hamam */
.custom-hamam-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EFE7DC 0%, #D8C7B2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hamam-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
  filter: blur(20px);
}

.hamam-motif svg {
  width: 70px;
  height: 70px;
}

.hamam-caption {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-top: 0.8rem;
}

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-primary);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

.card-tag.premium-tag {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  border: none;
}

.card-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(42, 35, 31, 0.82);
  backdrop-filter: blur(6px);
  color: #FAF6F0;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.stars {
  color: #C5A880;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.rating-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-badge-inline {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.card-perks {
  list-style: none;
  margin-bottom: 1.6rem;
}

.card-perks li {
  font-size: 0.84rem;
  color: var(--text-main);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.card-perks li span {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.card-footer {
  margin-top: auto;
}

.card-book-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid var(--surface-glass-border);
  border-radius: 25px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.card-book-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.card-book-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
}

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

.card-book-btn.primary-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  border: none;
}

.card-book-btn.primary-gold:hover {
  background: linear-gradient(135deg, #D4B68F 0%, var(--gold-deep) 100%);
}

/* Spa Features Ribbon */
.spa-features-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  flex: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-info h4 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-divider {
  width: 1px;
  height: 50px;
  background: var(--surface-glass-border);
  margin: 0 1.5rem;
}

/* ==========================================================
   VIP SUBSCRIBE & LAUNCH OFFER SECTION
   ========================================================== */

.vip-subscribe-section {
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 2;
}

.vip-card {
  position: relative;
  background: linear-gradient(135deg, #FBF8F3 0%, #F3ECE2 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.vip-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.vip-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(197, 168, 128, 0.2);
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}

.vip-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 1.2rem;
}

.vip-title .highlight {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 600;
}

.vip-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 520px;
  margin: 0 auto 1rem;
}

.input-wrap {
  position: relative;
  flex-grow: 1;
}

.mail-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
}

.input-wrap input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-smooth);
}

.input-wrap input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.18);
}

.subscribe-btn {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  padding: 0.85rem 1.6rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: linear-gradient(135deg, #CFB28A 0%, var(--gold-deep) 100%);
  transform: translateY(-2px);
}

.privacy-note {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================
   CONTACT & LOCATION SECTION
   ========================================================== */

.contact-location-section {
  padding: 6rem 1.5rem 7rem;
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
}

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

.info-col {
  padding-right: 1rem;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.detail-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.detail-icon svg {
  width: 20px;
  height: 20px;
}

.detail-content h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.detail-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.detail-content a {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 600;
}

.detail-content a:hover {
  text-decoration: underline;
}

/* Map Card */
.map-card {
  position: relative;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--surface-glass-border);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #F5EFEB 0%, #EDE4D8 100%);
}

.map-inner-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(197, 168, 128, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 168, 128, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.7;
}

.map-center-pin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pin-marker {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.pin-marker svg {
  width: 28px;
  height: 28px;
}

.pin-pulse {
  position: absolute;
  top: 6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.5);
  animation: pulsePin 2.5s infinite;
  z-index: 1;
}

@keyframes pulsePin {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

.pin-title {
  margin-top: 0.8rem;
  font-family: var(--font-brand);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.map-action-overlay {
  position: absolute;
  bottom: 1.5rem;
  z-index: 3;
}

.map-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--gold-primary);
  color: var(--text-main);
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.map-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.site-footer {
  background: #231D1A;
  color: #EDE4D8;
  padding: 3.5rem 1.5rem 2.5rem;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #AFA49C;
  font-family: var(--font-sans);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 1.8rem;
  text-align: center;
  font-size: 0.82rem;
  color: #8C8077;
}

/* ==========================================================
   APPOINTMENT MODAL
   ========================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 29, 26, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #FCFAF7;
  border: 1px solid var(--gold-primary);
  border-radius: 22px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.97);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

.modal-header {
  margin-bottom: 1.8rem;
  text-align: center;
}

.modal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Modal Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18);
}

.full-width {
  width: 100%;
  padding: 0.85rem 1.5rem;
  margin-top: 0.5rem;
}

.modal-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.modal-privacy svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-dark);
}

/* Modal Success State */
.modal-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-success-bg);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.success-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.success-message {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

/* ==========================================================
   FLOATING TOAST NOTIFICATIONS
   ========================================================== */

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2000;
  pointer-events: none;
}

.toast {
  background: #2A231F;
  color: #FAF6F0;
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.88rem;
  pointer-events: auto;
  animation: slideToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.removing {
  animation: fadeToastOut 0.3s forwards ease;
}

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

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

.toast-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

/* ==========================================================
   FLOATING ACTION BUTTONS (MOBILE / SCROLL)
   ========================================================== */

.floating-quick-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 90;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition: var(--transition-smooth);
}

.appointment-float {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  border: none;
}

.appointment-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(158, 123, 84, 0.45);
}

.whatsapp-float {
  background: #25D366;
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  border: none;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

/* ==========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================== */

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .spa-features-ribbon {
    flex-direction: column;
    gap: 1.8rem;
    align-items: stretch;
  }

  .feature-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .header-status-badge {
    display: none;
  }

  .header-phone-link .phone-number {
    display: none;
  }

  .hero-section {
    padding: 3.5rem 1rem 4.5rem;
    min-height: auto;
  }

  .countdown-wrapper {
    padding: 1.2rem 1rem;
  }

  .countdown-grid {
    gap: 0.4rem;
  }

  .time-card {
    min-width: 62px;
    padding: 0.6rem 0.3rem;
  }

  .time-number {
    font-size: 1.7rem;
  }

  .time-separator {
    font-size: 1.4rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .modal-dialog {
    padding: 1.8rem 1.2rem;
  }

  .floating-quick-bar .appointment-float span {
    display: none;
  }

  .floating-quick-bar .appointment-float {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .toast-container {
    bottom: 5rem;
    right: 1rem;
    left: 1rem;
  }
}
