/* ============================================
   Young & Glow Beauty Lounge — styles.css
   Premium Salon Website Stylesheet
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --primary: #B76E79;
  --primary-light: #D4A0A7;
  --secondary: #F8C8DC;
  --accent: #D4AF37;
  --plum: #5B2C6F;
  --plum-dark: #3D1A4A;
  --champagne: #F7E7CE;
  --cream: #FFF8F0;

  /* Backgrounds & Surfaces */
  --bg-body: #FFF8F0;
  --bg-section-alt: #FFF0F3;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-navbar: rgba(255, 248, 240, 0.85);
  --bg-footer: #1a1a2e;

  /* Text */
  --text-dark: #2D2D2D;
  --text-light: #F5F5F5;
  --text-muted: #888888;
  --text-heading: #2D2D2D;
  --text-body: #4a4a4a;

  /* Dark mode base values (unused in light) */
  --dark-bg: #1a1a2e;
  --dark-surface: #16213e;
  --dark-card: #1e2a47;

  /* Misc */
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(183, 110, 121, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;
  --transition-fast: 0.25s ease;
  --transition-base: 0.4s ease;
  --transition-slow: 0.8s ease;
  --navbar-height: 72px;
  --container-max: 1280px;
  --gap: 24px;
}

/* ---------- Dark Mode Overrides ---------- */
[data-theme='dark'] {
  --bg-body: #0f0f1a;
  --bg-section-alt: #141425;
  --bg-card: rgba(30, 42, 71, 0.7);
  --bg-navbar: rgba(15, 15, 26, 0.9);
  --bg-footer: #0a0a14;
  --text-dark: #F5F5F5;
  --text-heading: #F5F5F5;
  --text-body: #c8c8d0;
  --text-muted: #8888a0;
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(183, 110, 121, 0.2);
  --cream: #141425;
  --champagne: #1e1e30;
}

[data-theme='dark'] .about-section,
[data-theme='dark'] .services-section,
[data-theme='dark'] .gallery-section,
[data-theme='dark'] .testimonials-section,
[data-theme='dark'] .team-section,
[data-theme='dark'] .promotions-section,
[data-theme='dark'] .booking-section {
  background-color: var(--bg-body);
}

[data-theme='dark'] .about-section:nth-child(even),
[data-theme='dark'] .gallery-section,
[data-theme='dark'] .team-section {
  background-color: var(--bg-section-alt);
}

[data-theme='dark'] .service-card,
[data-theme='dark'] .testimonial-card,
[data-theme='dark'] .promo-card {
  background: rgba(30, 42, 71, 0.6);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme='dark'] .booking-form input,
[data-theme='dark'] .booking-form select,
[data-theme='dark'] .booking-form textarea {
  background: rgba(30, 42, 71, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

[data-theme='dark'] .map-placeholder {
  background: linear-gradient(135deg, #1e2a47, #16213e);
}

[data-theme='dark'] .newsletter-form input {
  background: rgba(30, 42, 71, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-body);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition-base), color var(--transition-base);
}

::selection {
  background: var(--primary);
  color: #fff;
}

::-moz-selection {
  background: var(--primary);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--text-heading);
  line-height: 1.25;
  transition: color var(--transition-base);
}

p {
  transition: color var(--transition-base);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  border: 2px solid var(--bg-body);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-light), var(--accent));
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream), var(--secondary), var(--champagne));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

[data-theme='dark'] #preloader {
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e, #16213e);
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.salon-name-preloader {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  animation: preloaderPulse 2s ease-in-out infinite;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(183, 110, 121, 0.15);
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  border-radius: var(--radius-full);
  margin: 0 auto;
  animation: spinnerRotate 1s linear infinite;
}

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  transition: background-color var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background-color: var(--bg-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

[data-theme='dark'] .navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.5px;
}

.nav-logo span {
  color: var(--accent);
  font-style: italic;
}

.navbar:not(.scrolled) .nav-logo {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  color: var(--text-body);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: none;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.navbar:not(.scrolled) .theme-toggle {
  border-color: rgba(255, 255, 255, 0.3);
}

.theme-toggle:hover {
  transform: rotate(20deg) scale(1.1);
  border-color: var(--accent);
  background-color: rgba(212, 175, 55, 0.1);
}

.theme-icon {
  line-height: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar:not(.scrolled) .hamburger span {
  background: #fff;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(61, 26, 74, 0.4) 70%,
    rgba(183, 110, 121, 0.3) 100%
  );
  z-index: 1;
}

.sparkle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.9), rgba(248, 200, 220, 0.4));
  animation: sparkleFloat 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sparkleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  25% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  75% {
    opacity: 0.6;
    transform: translateY(-40px) scale(0.8);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero h1 span {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 0.55em;
  background: linear-gradient(90deg, var(--secondary), var(--champagne), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--plum));
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
  cursor: pointer;
  border: none;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 52px;
  background: linear-gradient(135deg, var(--accent), var(--primary), var(--plum), var(--accent));
  background-size: 300% 300%;
  z-index: -1;
  animation: gradientShift 4s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(183, 110, 121, 0.5);
}

.cta-button:active {
  transform: translateY(-1px) scale(1.01);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero-specific CTA glow */
.hero .cta-button {
  animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(183, 110, 121, 0.7), 0 0 60px rgba(212, 175, 55, 0.2); }
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ---------- About Section ---------- */
.about-section {
  padding: 120px 0;
  background-color: var(--bg-body);
  transition: background-color var(--transition-base);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding: 16px;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  z-index: 0;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  z-index: 0;
}

.about-image-wrapper img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--text-body);
}

.about-text .cta-button {
  margin-top: 16px;
}

/* ---------- Services Section ---------- */
.services-section {
  padding: 120px 0;
  background-color: var(--bg-section-alt);
  transition: background-color var(--transition-base);
}

.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.tab-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.tab-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: rgba(183, 110, 121, 0.08);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--plum));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px var(--gap);
}

/* Base Service Card Container */
.service-card {
  position: relative;
  background: transparent !important;
  border: none !important;
  padding: 0;
  text-align: center;
  transition: transform var(--transition-fast), filter var(--transition-fast), opacity var(--transition-fast);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  filter: drop-shadow(0 20px 40px rgba(183, 110, 121, 0.35));
}

[data-theme='dark'] .service-card:hover {
  filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.25));
}

.service-card.hidden {
  display: none;
}

/* Watery Ink Animation for Elegant Droplet Shape (.shape-serum) */
.service-card.shape-serum::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: -12px; bottom: -12px;
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.45), rgba(212, 175, 55, 0.55), rgba(91, 44, 111, 0.45));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: wateryInk 10s ease-in-out infinite alternate;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.service-card.shape-serum::after {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  background: linear-gradient(225deg, rgba(248, 200, 220, 0.6), rgba(212, 175, 55, 0.6), rgba(183, 110, 121, 0.6));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: wateryInkReverse 12s ease-in-out infinite alternate;
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}

[data-theme='dark'] .service-card.shape-serum::before {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(183, 110, 121, 0.45), rgba(61, 26, 74, 0.45));
}

[data-theme='dark'] .service-card.shape-serum::after {
  background: linear-gradient(225deg, rgba(212, 175, 55, 0.4), rgba(248, 200, 220, 0.3), rgba(183, 110, 121, 0.4));
}

@keyframes wateryInk {
  0% {
    transform: rotate(0deg) scale(1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    transform: rotate(180deg) scale(1.05);
    border-radius: 70% 30% 50% 50% / 60% 30% 70% 40%;
  }
  100% {
    transform: rotate(360deg) scale(1);
    border-radius: 50% 50% 30% 70% / 30% 60% 40% 70%;
  }
}

@keyframes wateryInkReverse {
  0% {
    transform: rotate(360deg) scale(1.02);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    transform: rotate(180deg) scale(0.98);
    border-radius: 50% 50% 70% 30% / 50% 50% 30% 70%;
  }
  100% {
    transform: rotate(0deg) scale(1.02);
    border-radius: 40% 60% 50% 50% / 40% 50% 70% 50%;
  }
}

/* Product Cap (Hidden in favor of cohesive full-body beauty shapes) */
.product-cap {
  display: none;
}

/* Product Body Base Styles */
.product-body {
  width: 100%;
  flex-grow: 1;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all var(--transition-base);
}

[data-theme='dark'] .product-body {
  background: rgba(30, 42, 71, 0.65);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 1px 1px 2px rgba(255,255,255,0.1);
}

/* Specific Cohesive Beauty Product Shapes */

/* Elegant Arched Vanity Mirror / Oval Perfume Bottle (.shape-perfume) */
.shape-perfume .product-body {
  border-radius: 100px 100px 24px 24px;
  border: 2px solid rgba(183, 110, 121, 0.6);
  box-shadow: 0 10px 30px rgba(183, 110, 121, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Elegant Droplet / Arched Flacon (.shape-serum) */
.shape-serum .product-body {
  border-radius: 120px 120px 32px 32px;
  padding: 36px 24px 36px;
  border: 2px solid #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25), inset 0 2px 15px rgba(255, 255, 255, 0.6);
}

/* Premium Glass Bowl (.shape-jar) */
.shape-jar .product-body {
  border-radius: 24px 24px 80px 80px;
  padding: 32px 24px 40px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Sleek Organic Pebble / Compact Palette (.shape-compact) */
.shape-compact .product-body {
  border-radius: 65px;
  padding: 36px 24px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Product Image Container */
.product-image-container {
  width: 100%;
  height: 200px;
  position: relative;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.shape-perfume .product-image-container {
  border-radius: 80px 80px 16px 16px;
  height: 210px;
  border: 2px solid rgba(183, 110, 121, 0.4);
}

.shape-serum .product-image-container {
  border-radius: 100px 100px 20px 20px;
  height: 220px;
  border: 2px solid rgba(212, 175, 55, 0.5);
}

.shape-jar .product-image-container {
  border-radius: 16px 16px 60px 60px;
  height: 200px;
}

.shape-compact .product-image-container {
  border-radius: 50%;
  width: 190px;
  height: 190px;
  margin: 0 auto 24px;
  border: 4px solid #D4AF37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), inset 0 0 15px rgba(0,0,0,0.3);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.8, 1);
}

.service-card:hover .product-image-container img {
  transform: scale(1.1);
}

/* Service Icon Overlay */
.service-icon-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform var(--transition-fast);
}

[data-theme='dark'] .service-icon-overlay {
  background: rgba(15, 15, 26, 0.85);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover .service-icon-overlay {
  transform: scale(1.15) rotate(10deg);
}

/* Product Info */
.product-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-heading);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.service-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service Book Button */
.service-book-btn {
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--plum));
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.service-book-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px rgba(183, 110, 121, 0.6);
  color: #fff;
}

/* ---------- Gallery Section (25-Item Showcase & Controllers) ---------- */
.gallery-section {
  padding: 120px 0;
  background-color: var(--bg-body);
  transition: background-color var(--transition-base);
}

/* Gallery Controllers & Pagination */
.gallery-controllers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color, rgba(183, 110, 121, 0.2));
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.gallery-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.gallery-nav-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color, rgba(183, 110, 121, 0.3));
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.gallery-nav-btn:hover {
  background: #D4AF37;
  color: #000;
  border-color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.gallery-page-indicator {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0 8px;
}

/* Expandable Gallery Container (25 Items at a time) */
.expandable-gallery {
  display: flex;
  gap: 6px;
  height: 500px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 768px) {
  .expandable-gallery {
    height: 400px;
    gap: 4px;
  }
}

.gallery-panel {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-card);
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-panel.fade-out {
  opacity: 0;
  filter: blur(10px);
}

.gallery-panel.active,
.gallery-panel:hover {
  flex: 12;
}

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

.gallery-panel:hover img {
  transform: scale(1.05);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-panel.active .panel-overlay,
.gallery-panel:hover .panel-overlay {
  opacity: 1;
}

.panel-content {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-panel.active .panel-content,
.gallery-panel:hover .panel-content {
  transform: translateY(0);
  opacity: 1;
}

.panel-icon {
  color: #D4AF37;
  font-size: 1.5rem;
}

.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Expanded View Modal ---------- */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

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

.modal-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content-wrapper img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.8, 1);
}

.gallery-modal.active .modal-content-wrapper img {
  transform: scale(1);
}

.modal-close,
.modal-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
}

.modal-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.modal-nav.prev { left: 24px; }
.modal-nav.next { right: 24px; }

.modal-close:hover,
.modal-nav:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.modal-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.modal-counter {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 20px;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  padding: 120px 0;
  background-color: var(--bg-section-alt);
  transition: background-color var(--transition-base);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: var(--shadow-md);
}

.testimonial-card .card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  border-radius: 50%;
  transition: transform var(--transition-base);
  z-index: 0;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(183, 110, 121, 0.25);
  border-color: var(--accent);
}

[data-theme='dark'] .testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-card:hover .card-glow {
  transform: scale(1.5);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.client-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.client-info {
  flex-grow: 1;
  text-align: left;
}

.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 4px 0;
}

.stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 0;
}

.quote-icon {
  font-size: 3.5rem;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 0.5;
  font-family: serif;
  margin-left: auto;
  align-self: flex-start;
  user-select: none;
}

.testimonial-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  text-align: left;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid var(--border-color, rgba(183, 110, 121, 0.15));
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

[data-theme='dark'] .testimonial-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.service-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ---------- Team Section ---------- */
.team-section {
  padding: 120px 0;
  background-color: var(--bg-body);
  transition: background-color var(--transition-base);
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.team-member {
  text-align: center;
  width: 220px;
}

.team-image {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  border: 4px solid transparent;
  background-image: linear-gradient(var(--bg-body), var(--bg-body)),
                    linear-gradient(135deg, var(--primary), var(--accent), var(--plum));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  cursor: pointer;
}

.gradient-circle {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(183, 110, 121, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: var(--radius-full);
}

.team-image:hover .team-overlay {
  opacity: 1;
}

.team-overlay p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}

.team-member h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--text-heading);
}

.team-role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

/* ---------- Promotions Section ---------- */
.promotions-section {
  padding: 120px 0;
  background-color: var(--bg-section-alt);
  transition: background-color var(--transition-base);
}

.promotions-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.promo-card {
  position: relative;
  padding: 56px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  z-index: 1;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--plum), var(--secondary), var(--primary));
  z-index: -2;
  animation: borderRotate 4s linear infinite;
}

.promo-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: var(--bg-card);
  z-index: -1;
}

[data-theme='dark'] .promo-card::after {
  background: rgba(30, 42, 71, 0.95);
}

@keyframes borderRotate {
  to { transform: rotate(360deg); }
}

.promo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.2), transparent 70%);
  border-radius: var(--radius-full);
  animation: glowPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

.promo-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: var(--text-heading);
}

.promo-card p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.promo-card .cta-button {
  font-size: 0.95rem;
  padding: 14px 36px;
}

/* ---------- Social Media Section ---------- */
.social-section {
  padding: 120px 0;
  background-color: var(--bg-body);
  transition: background-color var(--transition-base);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.social-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

[data-theme='dark'] .social-card {
  background: rgba(30, 42, 71, 0.6);
  border-color: rgba(255, 255, 255, 0.06);
}

.social-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Specific Social Brand Colors */
.social-card.instagram .social-icon-wrapper {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3);
}
.social-card.tiktok .social-icon-wrapper {
  background: linear-gradient(135deg, #000000, #25f4ee, #fe2c55);
  box-shadow: 0 8px 25px rgba(254, 44, 85, 0.3);
}
.social-card.facebook .social-icon-wrapper {
  background: linear-gradient(135deg, #1877f2, #0c56b8);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}
.social-card.threads .social-icon-wrapper {
  background: linear-gradient(135deg, #101010, #404040);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
[data-theme='dark'] .social-card.threads .social-icon-wrapper {
  background: linear-gradient(135deg, #ffffff, #dcdcdc);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.social-card.x-twitter .social-icon-wrapper {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
[data-theme='dark'] .social-card.x-twitter .social-icon-wrapper {
  background: linear-gradient(135deg, #ffffff, #cccccc);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.social-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.social-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.social-action {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.social-card:hover .social-icon-wrapper {
  transform: scale(1.15) rotate(8deg);
}

.social-card:hover .social-action {
  color: var(--accent);
  transform: translateX(4px);
}

/* ---------- Booking / Contact Section ---------- */
.booking-section {
  padding: 120px 0;
  background-color: var(--bg-body);
  transition: background-color var(--transition-base);
}

.booking-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group label {
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
  background: transparent;
  padding: 0 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -10px;
  left: 16px;
  font-size: 0.8rem;
  color: var(--primary);
  background: var(--bg-body);
}

[data-theme='dark'] .form-group input:focus + label,
[data-theme='dark'] .form-group input:not(:placeholder-shown) + label,
[data-theme='dark'] .form-group textarea:focus + label,
[data-theme='dark'] .form-group textarea:not(:placeholder-shown) + label,
[data-theme='dark'] .form-group select:focus + label,
[data-theme='dark'] .form-group select:valid + label {
  background: var(--bg-body);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.submit-btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--plum));
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.3);
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(183, 110, 121, 0.5);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  animation: fadeInUp 0.5s ease;
}

.form-success.show {
  display: flex;
}

.form-success span {
  font-size: 1.5rem;
}

.form-success p {
  font-size: 0.95rem;
  color: #4caf50;
}

/* Contact Info */
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: var(--text-heading);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.info-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-heading);
}

.info-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-heading);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  background: linear-gradient(135deg, var(--primary), var(--plum));
  color: #fff;
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
}

.social-icon:hover svg {
  transform: scale(1.15);
}

.map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--champagne), var(--secondary), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid var(--glass-border);
}

.map-placeholder p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-footer);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--accent);
  font-style: italic;
}

.footer-col p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

.footer .social-links {
  margin-top: 16px;
}

.footer .social-icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer .social-icon:hover {
  background: linear-gradient(135deg, var(--primary), var(--plum));
  border-color: transparent;
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary), var(--plum));
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  margin-top: 0;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Promotional Popup Modal ---------- */
.promo-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  padding: 24px;
}

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

.promo-popup-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 850px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-popup-modal.active .promo-popup-content {
  transform: scale(1) translateY(0);
}

[data-theme='dark'] .promo-popup-content {
  background: rgba(22, 30, 53, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

.promo-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

[data-theme='dark'] .promo-popup-close {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.promo-popup-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
  border-color: var(--primary);
}

.promo-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.promo-popup-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.promo-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.promo-popup-body {
  padding: 56px 48px;
  text-align: left;
}

.promo-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  background: rgba(212, 175, 55, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.promo-popup-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.2;
}

.promo-popup-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.promo-popup-body p strong {
  color: var(--primary);
  font-weight: 700;
}

.promo-code-box {
  background: rgba(183, 110, 121, 0.1);
  border: 2px dashed var(--primary);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  text-align: center;
}

.promo-code-box span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--text-body);
  letter-spacing: 1px;
}

.promo-code-box strong {
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.promo-book-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* Responsive Popup */
@media (max-width: 768px) {
  .promo-popup-grid {
    grid-template-columns: 1fr;
  }
  .promo-popup-image {
    min-height: 220px;
  }
  .promo-popup-body {
    padding: 32px 24px;
  }
  .promo-popup-body h3 {
    font-size: 1.8rem;
  }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--plum));
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(183, 110, 121, 0.6);
}

/* ---------- Utility Animation Classes ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Keyframes ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive: Tablet (max-width 1024px) ---------- */
@media (max-width: 1024px) {
  :root {
    --navbar-height: 64px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .booking-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .promotions-section .container {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    min-width: 100%;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    columns: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ---------- Responsive: Mobile (max-width 768px) ---------- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-body);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-base);
    z-index: 999;
  }

  [data-theme='dark'] .nav-links {
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
    color: var(--text-body) !important;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(183, 110, 121, 0.08);
    color: var(--primary) !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .tagline {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .gallery-grid {
    columns: 1;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    gap: 32px;
  }

  .team-member {
    width: 160px;
  }

  .team-image {
    width: 140px;
    height: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about-section,
  .services-section,
  .gallery-section,
  .testimonials-section,
  .team-section,
  .promotions-section,
  .social-section,
  .booking-section {
    padding: 80px 0;
  }

  .promo-card {
    padding: 40px 24px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ---------- Responsive: Small Mobile (max-width 480px) ---------- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .tagline {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 0.92rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .service-card {
    padding: 28px 20px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }

  .service-tabs {
    gap: 8px;
  }

  .tab-btn {
    font-size: 0.82rem;
    padding: 8px 20px;
  }

  .about-section,
  .services-section,
  .gallery-section,
  .testimonials-section,
  .team-section,
  .promotions-section,
  .social-section,
  .booking-section {
    padding: 60px 0;
  }
}
