/* ============================================================================
   VÉLOURS PARIS — MASTER LUXURY DESIGN SYSTEM (`styles/index.css`)
   ============================================================================
   Permanent White-First Luxury Aesthetic for AI-Powered Beauty Studio & Salon Architecture.
   All layout rules, spacing tokens, responsive typography, soft blush & lavender gradients,
   champagne gold highlights, glassmorphism overlays, and micro-animations are permanently defined here.
   ============================================================================ */

/* --- 1. DESIGN SYSTEM CSS VARIABLES & TOKENS --- */
:root {
  /* White-First Luxury Palette */
  --pure-white: #FFFFFF;
  --alabaster: #FDFBFA;
  --ivory: #FAF6F0;
  --soft-blush: #FCECEF;
  --blush-pearl: #FDF8F7;
  --champagne-gold: #C5A059;
  --gold-highlight: #D4AF37;
  --gold-metallic: linear-gradient(135deg, #DFBE6F 0%, #C5A059 50%, #9D7B38 100%);
  --lavender-mist: #F3E7F8;
  --lavender-gradient: linear-gradient(135deg, #F3E7F8 0%, #FCECEF 50%, #FAF6F0 100%);
  --nude-silk: #F8F3F0;
  --warm-taupe: #EAE0D6;
  --rose-quartz: #F7E6E8;
  
  /* Dark Luxury Accents & Text */
  --obsidian: #121113;
  --velvet-dark: #1E1A1D;
  --charcoal: #2A2628;
  --slate: #635E63;
  --light-border: #EFE9E5;
  --gold-border: rgba(197, 160, 89, 0.3);

  /* Typography Hierarchy */
  --font-display: 'Cormorant Garamond', 'Cinzel', Georgia, serif;
  --font-sans: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation & Shadows */
  --shadow-xs: 0 4px 12px rgba(18, 17, 19, 0.02);
  --shadow-sm: 0 10px 25px rgba(18, 17, 19, 0.04);
  --shadow-md: 0 20px 45px rgba(18, 17, 19, 0.06);
  --shadow-lg: 0 30px 60px rgba(18, 17, 19, 0.1);
  --shadow-gold: 0 12px 30px rgba(197, 160, 89, 0.25);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout Constants */
  --navbar-height: 86px;
  --max-width: 1440px;
}

/* --- 2. GLOBAL RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--pure-white);
  color: var(--obsidian);
  line-height: 1.65;
  overflow-x: hidden;
  selection-background-color: var(--soft-blush);
  selection-color: var(--obsidian);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--pure-white);
}
::-webkit-scrollbar-thumb {
  background: var(--warm-taupe);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--champagne-gold);
}

/* --- 3. TYPOGRAPHY & SECTION HEADERS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--obsidian);
  line-height: 1.2;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--soft-blush);
  color: var(--champagne-gold);
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--obsidian) 60%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--slate);
  font-weight: 400;
}

/* Container Structure */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-pad {
  padding: 100px 0;
}

/* --- 4. BUTTON ARCHITECTURE --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-metallic);
  color: var(--pure-white);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(197, 160, 89, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--obsidian);
  padding: 15px 34px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--obsidian);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-outline:hover {
  background: var(--obsidian);
  color: var(--pure-white);
  transform: translateY(-3px);
}

.btn-blush {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--soft-blush);
  color: var(--obsidian);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(197, 160, 89, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}
.btn-blush:hover {
  background: var(--champagne-gold);
  color: var(--pure-white);
}

/* --- 5. PREMIUM STICKY NAVIGATION --- */
.navbar-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  z-index: 2000;
  transition: var(--transition-smooth);
}
.navbar-wrapper.scrolled {
  height: 72px;
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--obsidian);
  line-height: 1;
}
.navbar-logo-subtext {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--champagne-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.navbar-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--obsidian);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}
.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--champagne-gold);
  transition: width 0.3s ease;
}
.navbar-link:hover {
  color: var(--champagne-gold);
}
.navbar-link:hover::after, .navbar-link.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--alabaster);
  border: 1px solid var(--light-border);
  color: var(--obsidian);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-fast);
}
.btn-call:hover {
  background: var(--champagne-gold);
  color: var(--pure-white);
  border-color: var(--champagne-gold);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--obsidian);
  cursor: pointer;
}

/* --- 6. LUXURY HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  background-color: var(--blush-pearl);
  overflow: hidden;
  padding: 60px 0;
}

.hero-bg-accent {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(243, 231, 248, 0.7) 0%, rgba(252, 236, 239, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--pure-white);
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--champagne-gold);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}

.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--obsidian);
}

.hero-desc {
  font-size: 1.16rem;
  color: var(--slate);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: 200px 200px 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--warm-taupe);
}
.hero-image-frame img, .hero-image-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-image-frame:hover img {
  transform: scale(1.04);
}

.hero-floating-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  max-width: 280px;
}
.hero-floating-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--champagne-gold);
}

/* --- 7. ABOUT SALON & OWNER ARCHITECTURE --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-interior-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-img-box {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-box:hover img {
  transform: scale(1.06);
}
.about-img-box.tall {
  grid-row: span 2;
}

.owner-card {
  margin-top: 36px;
  padding: 24px;
  background: var(--alabaster);
  border: 1px solid var(--light-border);
  border-left: 4px solid var(--champagne-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.owner-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--champagne-gold);
}

/* --- 8. SERVICES SECTION & REUSABLE SERVICECARD --- */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--alabaster);
  border: 1px solid var(--light-border);
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--obsidian);
  color: var(--pure-white);
  border-color: var(--obsidian);
  box-shadow: var(--shadow-sm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.service-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--warm-taupe);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--champagne-gold);
  color: var(--pure-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--champagne-gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card-title {
  font-size: 1.36rem;
  margin-bottom: 12px;
  color: var(--obsidian);
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--light-border);
  padding-top: 20px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--obsidian);
}

/* --- 9. PRICING PACKAGES (Reusable PricingCard) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.pricing-card {
  background: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 42px 36px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--alabaster);
  border: 2px solid var(--champagne-gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--soft-blush);
  color: var(--obsidian);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--gold-border);
}

.pricing-header {
  border-bottom: 1px solid var(--light-border);
  padding-bottom: 24px;
  margin-bottom: 28px;
}
.pricing-name {
  font-size: 1.6rem;
  color: var(--obsidian);
  margin-bottom: 8px;
}
.pricing-sub {
  font-size: 0.92rem;
  color: var(--slate);
  min-height: 44px;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-current {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--obsidian);
}
.pricing-original {
  font-size: 1.2rem;
  color: var(--slate);
  text-decoration: line-through;
}

.pricing-services-list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}
.pricing-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.pricing-services-list li i {
  color: var(--champagne-gold);
  margin-top: 4px;
}

/* --- 10. BEAUTY SPECIALISTS / STYLIST CARD --- */
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 36px;
}

.stylist-card {
  background: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.stylist-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.stylist-img-box {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.stylist-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.stylist-card:hover .stylist-img-box img {
  transform: scale(1.05);
}

.stylist-exp-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(18, 17, 19, 0.86);
  backdrop-filter: blur(8px);
  color: var(--champagne-gold);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
}

.stylist-body {
  padding: 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.stylist-name {
  font-size: 1.4rem;
  color: var(--obsidian);
  margin-bottom: 4px;
}
.stylist-role {
  font-size: 0.86rem;
  color: var(--champagne-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.stylist-bio {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.stylist-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--light-border);
  padding-top: 18px;
}

/* --- 11. PROFESSIONAL APPOINTMENT BOOKING SYSTEM --- */
.booking-section {
  background: var(--velvet-dark);
  color: var(--pure-white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.booking-container-box {
  background: var(--pure-white);
  color: var(--obsidian);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.booking-sidebar {
  background: var(--blush-pearl);
  padding: 48px 40px;
  border-right: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-steps-nav {
  list-style: none;
  margin: 36px 0;
}
.booking-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--slate);
  font-weight: 600;
  transition: var(--transition-fast);
}
.booking-step-item.active {
  color: var(--obsidian);
}
.booking-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--warm-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}
.booking-step-item.active .booking-step-num {
  background: var(--champagne-gold);
  color: var(--pure-white);
}

.booking-main-panel {
  padding: 48px 54px;
}

/* Form inputs & grid */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--obsidian);
  background: var(--pure-white);
  transition: var(--transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--champagne-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* Time Slot Chips */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.time-slot-chip {
  padding: 12px;
  text-align: center;
  background: var(--alabaster);
  border: 1.5px solid var(--light-border);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}
.time-slot-chip:hover, .time-slot-chip.selected {
  background: var(--obsidian);
  color: var(--pure-white);
  border-color: var(--obsidian);
}

/* --- 12. BEFORE & AFTER INTERACTIVE GALLERY --- */
.before-after-slider-card {
  background: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ba-image-container {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  user-select: none;
}
.ba-img-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ba-img-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-img-after {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--pure-white);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-slider-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 2px solid var(--champagne-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--obsidian);
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}

/* --- 13. LUXURY MASONRY BEAUTY GALLERY --- */
.masonry-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.gallery-item-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}
.gallery-item-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item-card:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(18, 17, 19, 0.85) 0%, rgba(0,0,0,0) 100%);
  color: var(--pure-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item-card:hover .gallery-overlay {
  opacity: 1;
}

/* --- 14. MEMBERSHIP PLANS --- */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.membership-card {
  background: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 44px 38px;
  position: relative;
  transition: var(--transition-smooth);
}
.membership-card.highlight {
  background: var(--velvet-dark);
  color: var(--pure-white);
  border-color: var(--champagne-gold);
  box-shadow: var(--shadow-lg);
}
.membership-card.highlight h3, .membership-card.highlight .membership-price {
  color: var(--pure-white);
}

/* --- 15. PROMOTIONAL OFFERS (OfferCard) --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 36px;
}
.offer-card {
  background: var(--blush-pearl);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.offer-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- 16. TESTIMONIALS (ReviewCard) --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}
.review-card {
  background: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 16px;
}
.review-text {
  font-style: italic;
  color: var(--charcoal);
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* --- 17. FAQ ACCORDION --- */
.accordion-wrapper {
  max-width: 860px;
  margin: 0 auto;
}
.accordion-item {
  background: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}
.accordion-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--obsidian);
}
.accordion-header:hover {
  color: var(--champagne-gold);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--slate);
  line-height: 1.7;
}
.accordion-item.open .accordion-body {
  max-height: 400px;
  padding: 0 28px 24px;
}
.accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
  color: var(--champagne-gold);
}

/* --- 18. CONTACT SECTION & MAPS --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--alabaster);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 44px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.working-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.working-hours-table td {
  padding: 10px 0;
  border-bottom: 1px dashed var(--light-border);
  font-size: 0.92rem;
}

.map-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 580px;
  border: 1px solid var(--light-border);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- 19. FOOTER --- */
.site-footer {
  background: var(--obsidian);
  color: var(--pure-white);
  padding: 90px 0 36px;
  border-top: 2px solid var(--champagne-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pure-white);
  letter-spacing: 0.12em;
}
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--champagne-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* --- 20. MODALS & SLIDE-OVER DRAWERS --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 17, 19, 0.75);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content-box {
  background: var(--pure-white);
  width: 92%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 42px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}
.modal-overlay.open .modal-content-box {
  transform: translateY(0);
}
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--alabaster);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 21. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1100px) {
  .hero-grid, .about-grid, .booking-container-box, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .navbar-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 64px 0;
  }
  .hero-section {
    padding: 30px 0;
  }
  .form-grid-2, .about-interior-collage {
    grid-template-columns: 1fr;
  }
  .pricing-card, .membership-card, .booking-main-panel, .booking-sidebar {
    padding: 28px 20px;
  }
  .offer-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
