/* ==========================================
   DONA'S MAKEOVER - ROSE GOLD ELEGANCE PALETTE
   Palette Tokens:
   - Primary: #3B271D (Deep Charcoal / Midnight Black)
   - Secondary / Accent: #C7934E & #DDA963 (Rose Gold / Soft Champagne)
   - Surface / Background: #FFFAF1 (Warm Ivory / Blush Cream)
   - Highlight / Interactive: #D8A47F (Dusty Rose)
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #3B271D;            /* Deep Charcoal Primary */
  --bg-surface: #FFFAF1;         /* Warm Ivory / Blush Cream Base */
  --bg-surface-alt: #F8F1E5;     /* Secondary Soft Surface */
  --bg-card: #FFFFFF;            /* Pure White Elevated Surface */
  
  --bg-glass: rgba(255, 250, 241, 0.92);
  --bg-glass-dark: rgba(59, 39, 29, 0.88);
  
  --accent-gold: #C7934E;        /* Rose Gold / Soft Champagne */
  --accent-gold-bright: #DDA963; /* Bright Champagne Gold */
  --accent-rose: #D8A47F;        /* Dusty Rose Highlight */
  
  --text-primary: #3B271D;       /* Espresso Brown Primary Text */
  --text-muted: #6B5549;         /* Soft Espresso Muted Text */
  --text-light: #FFFAF1;         /* Aesthetic White Light Text */
  --text-dim-light: #E8C58C;     /* High-Contrast Warm Gold Dim Text */

  --gold-gradient: linear-gradient(135deg, #C7934E 0%, #E8D3A7 50%, #DDA963 100%);
  --rose-gradient: linear-gradient(135deg, #D8A47F 0%, #E6BBA0 50%, #C7934E 100%);
  --gold-glow: rgba(199, 147, 78, 0.3);
  --gold-border: rgba(199, 147, 78, 0.35);
  --soft-border: rgba(59, 39, 29, 0.08);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout & Spacing */
  --max-width: 1280px;
  --header-height: 86px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Dynamic Ambient Cursor Glow Aura */
.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 147, 78, 0.15) 0%, rgba(216, 164, 127, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, opacity 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-surface);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-bright);
}

/* Common Typography & Utility Helpers */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-text {
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
}

.subtitle-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(199, 147, 78, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(199, 147, 78, 0.1);
  transition: transform 0.3s ease;
}

.subtitle-pill:hover {
  transform: scale(1.04);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Directional Scroll Reveals */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-zoom.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Buttons with Shimmer Motion */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-blue, .btn-gold {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(199, 147, 78, 0.35);
  font-weight: 700;
}

.btn-blue:hover, .btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 35px rgba(199, 147, 78, 0.55);
  background-position: right center;
}

.btn-outline-blue, .btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  backdrop-filter: blur(10px);
}

.btn-outline-blue:hover, .btn-outline-gold:hover {
  background: rgba(199, 147, 78, 0.12);
  border-color: var(--accent-gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(199, 147, 78, 0.2);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* 3D Parallax Glass Cards */
.glass-card, .tilt-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  box-shadow: 0 10px 30px rgba(59, 39, 29, 0.05);
}

.glass-card:hover, .tilt-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(199, 147, 78, 0.25);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 10px 30px rgba(59, 39, 29, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-script-img {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-script-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(199, 147, 78, 0.45));
}

.footer-logo-img {
  height: 52px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(255, 250, 241, 0.98);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--gold-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav .nav-link {
  font-size: 1.1rem;
}

/* DYNAMIC LIVE TICKER BAR */
.ticker-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.65rem 0;
  margin-top: var(--header-height);
  font-size: 0.88rem;
  color: var(--text-light);
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot-open {
  background: #34D399;
  box-shadow: 0 0 10px #34D399;
  animation: pulseGreen 1.8s infinite;
}

.status-dot-closed {
  background: #F87171;
  box-shadow: 0 0 10px #F87171;
  animation: pulseRed 1.8s infinite;
}

@keyframes pulseGreen {
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

@keyframes pulseRed {
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

.status-open-text {
  color: #34D399;
  font-weight: 700;
}

.status-closed-text {
  color: #F87171;
  font-weight: 700;
}

/* ==========================================
   HERO SECTION WITH VIDEO BACKGROUND
   ========================================== */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 3rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(59, 39, 29, 0.65) 0%,
    rgba(59, 39, 29, 0.78) 60%,
    rgba(59, 39, 29, 0.95) 100%
  ), radial-gradient(circle at 75% 30%, rgba(199, 147, 78, 0.25) 0%, transparent 60%);
  z-index: -1;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(199, 147, 78, 0.2);
  border: 1px solid var(--gold-border);
  color: var(--accent-gold-bright);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(199, 147, 78, 0.2);
}

.hero-badge i {
  color: var(--accent-gold-bright);
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 250, 241, 0.9);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(199, 147, 78, 0.3);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold-bright);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 250, 241, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating Hero Card */
.hero-card {
  padding: 2.2rem;
  position: relative;
  background: var(--bg-glass-dark);
  color: var(--text-light);
  border: 1px solid var(--gold-border);
  animation: floatSlow 5s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-card-title {
  font-size: 1.3rem;
  color: var(--text-light);
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--gold-gradient);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.hero-quick-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(199, 147, 78, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-pill:hover {
  transform: translateX(6px);
  border-color: var(--accent-gold);
}

.feature-pill i {
  color: var(--accent-gold-bright);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.feature-pill span {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* ==========================================
   ABOUT US & BRAND VALUES
   ========================================== */
.about-section {
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(59, 39, 29, 0.15);
  border: 1px solid var(--gold-border);
  max-width: 460px;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.06);
}

.about-experience-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  backdrop-filter: blur(10px);
}

.badge-years {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  color: rgba(255, 250, 241, 0.8);
  line-height: 1.3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(199, 147, 78, 0.3);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 20px rgba(59, 39, 29, 0.05);
  background: var(--bg-card);
}

.value-card-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(199, 147, 78, 0.35);
}

.value-card:hover .value-card-img {
  transform: scale(1.08);
}

.value-card:last-child:nth-child(odd) {
  grid-column: span 2;
}

/* ==========================================
   DYNAMIC MAKEOVER TRANSFORMATIONS CAROUSEL
   ========================================== */
.transform-section {
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
}

.transform-carousel-wrapper {
  position: relative;
  max-width: 100%;
}

.transform-carousel-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-behavior: auto;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  snap-type: none;
}

.transform-carousel-track::-webkit-scrollbar {
  display: none;
}

.transform-carousel-track .transform-card {
  flex: 0 0 calc(33.333% - 1.2rem);
  min-width: 320px;
  snap-align: start;
}

.transform-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gold-border);
  background: var(--bg-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(59, 39, 29, 0.05);
}

.transform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(199, 147, 78, 0.25);
  border-color: var(--accent-gold);
}

.transform-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
  aspect-ratio: 4 / 3;
}

.transform-card:hover img {
  transform: scale(1.06);
}

.transform-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 1.25rem;
}

.transform-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 80px;
}

.transform-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.35;
}

.transform-subtitle {
  font-size: 0.86rem;
  color: var(--accent-rose);
  line-height: 1.45;
  font-weight: 600;
}

/* Carousel Nav Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--gold-border);
  color: var(--accent-gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 20px var(--gold-glow);
}

.carousel-nav-btn.prev {
  left: -1.5rem;
}

.carousel-nav-btn.next {
  right: -1.5rem;
}

/* Carousel Dots Indicators */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(199, 147, 78, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 30px;
  border-radius: 10px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ==========================================
   SERVICES SHOWCASE & SEARCH FILTER
   ========================================== */
.services-section {
  background: var(--bg-surface);
}

.search-box-wrapper {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 1.2rem 1rem 3rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(59, 39, 29, 0.03);
}

.search-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 18px var(--gold-glow);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.services-group-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.group-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(59, 39, 29, 0.03);
}

.group-tab:hover, .group-tab.active {
  background: var(--bg-dark);
  color: var(--accent-gold-bright);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 18px rgba(59, 39, 29, 0.25);
  transform: translateY(-2px);
}

.services-filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) rgba(199, 147, 78, 0.1);
  margin-bottom: 2.5rem;
}

.services-filter::-webkit-scrollbar {
  height: 6px;
}

.services-filter::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid rgba(199, 147, 78, 0.25);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(59, 39, 29, 0.03);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(199, 147, 78, 0.4);
  transform: translateY(-2px);
}

.services-disclaimer-note {
  margin-top: 3rem;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(199, 147, 78, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 4px 15px rgba(59, 39, 29, 0.03);
}

.services-disclaimer-note i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  animation: cardEntrance 0.5s ease backwards;
}

@keyframes cardEntrance {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-rose);
  flex-shrink: 1;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(216, 164, 127, 0.15);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-border);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.service-price.long-range {
  font-size: 0.92rem;
  padding: 0.35rem 0.75rem;
  letter-spacing: -0.01em;
}

.service-name {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(199, 147, 78, 0.15);
}

.service-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-meta i {
  color: var(--accent-gold);
}

/* ==========================================
   VIRTUAL BEAUTY CONSULTATION WITH PARALLAX SCROLL
   ========================================== */
.quiz-section {
  position: relative;
  background-image: url('./images/quiz_bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
  color: var(--text-light);
}

.quiz-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(59, 39, 29, 0.82) 0%,
    rgba(59, 39, 29, 0.88) 50%,
    rgba(59, 39, 29, 0.92) 100%
  );
  z-index: 1;
}

.quiz-section .container {
  position: relative;
  z-index: 2;
}

.quiz-section .section-title {
  color: #FFFFFF !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

.quiz-section .section-desc {
  color: rgba(255, 250, 241, 0.92) !important;
}

.quiz-section .subtitle-pill {
  background: rgba(199, 147, 78, 0.25);
  color: var(--accent-gold-bright);
  border-color: var(--accent-gold-bright);
  box-shadow: 0 0 15px rgba(199, 147, 78, 0.4);
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--bg-glass-dark);
  color: var(--text-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.quiz-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--gold-gradient);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-size: 1.6rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.quiz-option-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(199, 147, 78, 0.25);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.quiz-option-card:hover, .quiz-option-card.selected {
  background: rgba(199, 147, 78, 0.25);
  border-color: var(--accent-gold-bright);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(199, 147, 78, 0.3);
}

.quiz-option-card i {
  font-size: 2rem;
  color: var(--accent-gold-bright);
  margin-bottom: 0.8rem;
  display: block;
}

.quiz-option-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.quiz-option-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 250, 241, 0.75);
}

.quiz-result-box {
  text-align: center;
  padding: 2rem;
  background: rgba(199, 147, 78, 0.18);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
}

.quiz-result-title {
  font-size: 1.8rem;
  color: var(--accent-gold-bright);
  margin-bottom: 0.5rem;
}

.quiz-result-desc {
  font-size: 1rem;
  color: rgba(255, 250, 241, 0.85);
  margin-bottom: 1.5rem;
}

/* ==========================================
   TESTIMONIALS (WITH CLASSY WEBP BACKGROUND)
   ========================================== */
.testimonials-section {
  position: relative;
  background: linear-gradient(180deg, rgba(59, 39, 29, 0.82) 0%, rgba(35, 22, 16, 0.90) 100%), url('./images/testimonials_bg.webp') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--text-light);
  overflow: hidden;
}

.testimonials-section .section-title {
  color: #FFFFFF;
}

.testimonials-section .section-desc {
  color: rgba(255, 250, 241, 0.88);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(199, 147, 78, 0.35);
  border-color: var(--accent-gold);
}

.quote-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 10px var(--gold-glow);
}

.author-info h4 {
  font-size: 1rem;
  color: var(--text-primary);
}

.author-info p {
  font-size: 0.82rem;
  color: var(--accent-rose);
  font-weight: 600;
}

/* ==========================================
   BOOKING SYSTEM & MODAL
   ========================================== */
.booking-section {
  background: var(--bg-surface-alt);
  position: relative;
}

.booking-form-wrapper {
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 50px rgba(59, 39, 29, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid rgba(199, 147, 78, 0.3);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.form-select option {
  background: #FFFFFF;
  color: var(--text-primary);
}

/* Modal Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(59, 39, 29, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: 90%;
  max-width: 550px;
  background: var(--bg-surface);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-primary);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px var(--gold-glow);
}

/* ==========================================
   FAQS ACCORDION
   ========================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(199, 147, 78, 0.2);
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(59, 39, 29, 0.03);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* Floating WhatsApp & Call FAB */
.floating-fab-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-btn:hover {
  transform: scale(1.15);
}

.fab-whatsapp {
  background: #25d366;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.5);
}

.fab-book {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 0 18px var(--gold-glow);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--gold-border);
  padding: 5rem 0 2rem;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255, 250, 241, 0.75);
  font-size: 0.93rem;
  margin: 1.2rem 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-address {
  margin-top: 1.25rem;
  color: rgba(255, 250, 241, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-address .address-title {
  display: block;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  color: var(--accent-gold-bright);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-dim-light);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(199, 147, 78, 0.2);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.85rem;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .transform-carousel-track .transform-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cursor-aura {
    display: none;
  }
  .quiz-section {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .transform-carousel-track .transform-card {
    flex: 0 0 85%;
  }
  .carousel-nav-btn {
    display: none;
  }
  .values-grid, .form-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .quiz-container, .booking-form-wrapper {
    padding: 1.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   KNOW THE TEAM SECTION (9 SQUARE SLOTS)
   ========================================== */
.team-section {
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
}

.team-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.team-carousel-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-behavior: auto;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.team-carousel-track::-webkit-scrollbar {
  display: none;
}

.team-carousel-track .team-card {
  flex: 0 0 calc(33.333% - 1.2rem);
  min-width: 290px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(199, 147, 78, 0.3);
}

.team-img-slot {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(199, 147, 78, 0.25);
  box-shadow: 0 8px 20px rgba(59, 39, 29, 0.08);
  background: var(--bg-surface);
}

.team-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img-slot img {
  transform: scale(1.08);
}

.team-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--bg-dark);
  color: var(--accent-gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.team-designation {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-specialty {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.2rem;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

