/* ==========================================================================
   AERYN SALON & BEAUTY LOUNGE - MODERN LUXURY STYLESHEET
   Official Domain: aerynsalon.my.id
   ========================================================================== */

:root {
  /* Core Luxury Color Palette */
  --bg-primary: #FCFAF7;
  --bg-secondary: #F7F3EC;
  --bg-card: #FFFFFF;
  --bg-dark: #0D0D0F;
  --bg-dark-card: #151518;
  --bg-dark-surface: #1E1E24;

  /* Ciri Khas Resmi Aeryn Salon - Ungu Cerah (Electric & Vibrant Luxury Purple) */
  --purple-primary: #A855F7;          /* Ungu cerah elektrik / vibrant bright purple */
  --purple-vibrant: #9333EA;          /* Ungu cerah saturated */
  --purple-light: #C084FC;            /* Lilac / lavender glow cerah */
  --purple-lighter: #F3E8FF;          /* Soft lavender tint */
  --purple-dark: #7E22CE;             /* Royal deep purple */
  --purple-deep: #581C87;             /* Deep amethyst */
  --purple-gradient: linear-gradient(135deg, #C084FC 0%, #A855F7 50%, #7E22CE 100%);
  --purple-gradient-glow: linear-gradient(135deg, #E9D5FF 0%, #C084FC 45%, #9333EA 100%);
  --purple-gradient-soft: linear-gradient(135deg, rgba(168, 85, 247, 0.16) 0%, rgba(147, 51, 234, 0.04) 100%);
  --purple-glow: 0 10px 30px -5px rgba(168, 85, 247, 0.45);
  --border-purple: rgba(168, 85, 247, 0.35);

  /* Brand Primary */
  --brand-primary: var(--purple-primary);
  --brand-light: var(--purple-light);
  --brand-lighter: var(--purple-lighter);
  --brand-dark: var(--purple-dark);
  --brand-gradient: var(--purple-gradient);
  --brand-glow: var(--purple-glow);

  /* Gold Aliases (mapped to signature bright purple for full compatibility) */
  --gold-primary: var(--purple-primary);
  --gold-light: var(--purple-light);
  --gold-lighter: var(--purple-lighter);
  --gold-dark: var(--purple-dark);
  --gold-gradient: var(--purple-gradient);
  --gold-gradient-soft: var(--purple-gradient-soft);
  --gold-glow: var(--purple-glow);

  /* Typography & Neutral Tones */
  --text-main: #18151D;
  --text-muted: #6C6474;
  --text-light: #FAF7FC;
  --text-gold: var(--purple-light);
  --text-purple: var(--purple-primary);
  --border-subtle: #E8E0F0;
  --border-gold: rgba(168, 85, 247, 0.35);

  /* Font Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 28px -6px rgba(28, 27, 30, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(28, 27, 30, 0.14);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.6);

  /* Layout */
  --max-width: 1240px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection {
  background-color: var(--gold-light);
  color: var(--bg-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-main);
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-tag::before, .section-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px auto;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold-primary);
}

.text-purple {
  color: var(--purple-primary);
}

.gold-gradient-text,
.purple-gradient-text {
  background: linear-gradient(135deg, #F3E8FF 0%, #D8B4FE 25%, #C084FC 55%, #A855F7 85%, #9333EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-gold,
.btn-purple {
  background: var(--purple-gradient);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: var(--purple-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -4px rgba(168, 85, 247, 0.45);
  filter: brightness(1.06);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.75s ease;
}

.btn-gold:hover::after {
  left: 140%;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
}

.btn-outline-gold:hover,
.btn-outline-purple:hover {
  background: var(--purple-gradient);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--bg-dark);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(168, 85, 247, 0.12);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #BDB7AE;
}

.announcement-item i {
  color: var(--gold-primary);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #34D399;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 250, 247, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.main-header.scrolled {
  background: rgba(252, 250, 247, 0.96);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(168, 85, 247, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
  transform: translateX(-50%);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  z-index: 1001;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}

.drawer-links a {
  font-size: 1.15rem;
  font-weight: 500;
  color: #D1CBC1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-links a:hover,
.drawer-links a.active {
  color: var(--gold-light);
  padding-left: 6px;
}

.drawer-links a i {
  color: var(--gold-primary);
  width: 22px;
}

.drawer-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  padding: 80px 0;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video, .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.1);
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0.7) 0%, rgba(13,13,15,0.4) 40%, rgba(13,13,15,0.85) 100%),
              radial-gradient(circle at center, transparent 0%, rgba(13,13,15,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid rgba(168, 85, 247, 0.4);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--gold-primary);
}

.hero-title {
  font-size: 3.6rem;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title span.gold {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.18rem;
  color: #DDD5C9;
  line-height: 1.7;
  max-width: 660px;
  margin-bottom: 38px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  max-width: 650px;
}

.hero-stat-item h3 {
  font-size: 1.9rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.hero-stat-item p {
  font-size: 0.82rem;
  color: #ADA69A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   PILLARS / VALUE PROPOSITIONS
   ========================================================================== */
.pillars-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--bg-card);
  padding: 36px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

.pillar-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--gold-gradient);
  color: #FFFFFF;
  transform: rotate(5deg) scale(1.05);
}

.pillar-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SERVICES SECTION & TABS
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-main);
  border-color: var(--gold-primary);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 700;
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #EFECE6;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 13, 15, 0.82);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.service-highlight-tag {
  color: var(--gold-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.service-highlight-tag i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.service-action-btn {
  width: 100%;
}

/* ==========================================================================
   LOOKBOOK / GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--bg-dark);
  color: var(--gold-light);
  border-color: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: #EFECE6;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,13,15,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h5 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 15, 0.94);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 30px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-height: 75vh;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.lightbox-caption {
  margin-top: 16px;
  color: #E2DDD5;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   ABOUT & PHILOSOPHY
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual-composition {
  position: relative;
}

.about-main-img {
  width: 88%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: var(--shadow-dark);
}

.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 240px;
  background: rgba(26, 26, 32, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-dark);
}

.about-badge-card h4 {
  color: var(--gold-light);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.about-badge-card p {
  color: #ADA69A;
  font-size: 0.85rem;
}

.about-text h2 {
  color: #FFFFFF;
  font-size: 2.8rem;
  margin-bottom: 22px;
}

.about-text p {
  color: #D1CBC1;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ECE7DE;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-feature-item i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

/* ==========================================================================
   INTERACTIVE WHATSAPP BOOKING SECTION
   ========================================================================== */
.booking-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.booking-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
}

.booking-sidebar {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(168, 85, 247, 0.2);
}

.booking-sidebar h3 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.booking-sidebar p {
  color: #C2BBB0;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 30px;
}

.booking-steps-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.booking-step {
  display: flex;
  gap: 16px;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-info h5 {
  color: #FFF;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.step-info p {
  color: #9C968D;
  font-size: 0.82rem;
  margin-bottom: 0;
}

.booking-direct-wa {
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(168, 85, 247, 0.4);
  font-size: 0.85rem;
  color: #D3CDC2;
}

.booking-direct-wa strong {
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.booking-form-container {
  padding: 56px 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background: #FCFAF7;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.booking-submit-btn {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  font-size: 1.05rem;
}

/* ==========================================================================
   TESTIMONIALS & SOCIAL PROOF
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.reviewer-details h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.reviewer-details span {
  font-size: 0.8rem;
  color: var(--gold-dark);
}

/* ==========================================================================
   LOCATION, HOURS & AMENITIES
   ========================================================================== */
.location-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.location-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.location-card h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.amenities-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.amenity-box {
  text-align: center;
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.amenity-box i {
  display: block;
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: var(--bg-dark);
  color: #C4BEB4;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(168, 85, 247, 0.25);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  color: #FFFFFF;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer-brand span.gold {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #A39D92;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: #A39D92;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: #A39D94;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP BEACON)
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

.wa-beacon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.8;
  animation: beacon 2s infinite;
}

@keyframes beacon {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.9rem;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding: 40px 32px;
  }
  .booking-form-container {
    padding: 40px 32px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-main-img {
    width: 100%;
    height: 420px;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }
  .announcement-bar .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .announcement-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .desktop-nav, .header-cta-group .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-section {
    min-height: 80vh;
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-stats-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-title {
    font-size: 2rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .amenities-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
}

/* ==========================================================================
   TREATMENT MENU CATALOG DIRECTORY
   ========================================================================== */
.treatment-catalog-wrapper {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--border-subtle);
}

.catalog-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 991px) {
  .catalog-accordion-grid {
    grid-template-columns: 1fr;
  }
}

.catalog-category-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.catalog-category-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.catalog-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.catalog-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-gradient-soft);
  border: 1px solid var(--border-purple);
  color: var(--purple-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.catalog-cat-title-wrap h4 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 2px;
  font-weight: 700;
}

.catalog-cat-title-wrap span {
  font-size: 0.8rem;
  color: var(--purple-primary);
  font-weight: 600;
}

.catalog-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.catalog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  border: 1px solid transparent;
  transition: var(--transition);
}

.catalog-item:hover {
  border-color: var(--border-purple);
  background: #FFFFFF;
}

.catalog-item-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.catalog-item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.catalog-item .quick-book-btn {
  padding: 8px 12px;
  font-size: 0.8rem;
  flex-shrink: 0;
  border-radius: 8px;
}

.catalog-note-box {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--purple-gradient-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--purple-primary);
  font-size: 0.82rem;
  color: var(--text-main);
  font-weight: 500;
}
