/* ==========================================================================
   L'MOUR BEAUTY GROUP - LUXURY BLACK & GOLD DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@200;300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Gold Palette */
  --color-gold-light: #ECC880;
  --color-gold: #C5A059;
  --color-gold-dark: #9A7B38;
  --color-gold-deep: #70551E;
  
  /* Dark Velvet Palette */
  --color-bg-darkest: #070707;
  --color-bg-dark: #0F0F0F;
  --color-bg-card: #151515;
  --color-bg-card-hover: #1E1E1E;
  
  /* Warm Champagne Accents */
  --color-cream: #FAF6EE;
  --color-cream-soft: #F3ECE0;
  --color-cream-muted: #E5DAC9;
  
  /* Text */
  --color-text-light: #F9FAFB;
  --color-text-muted: #A1A1AA;
  --color-text-dark: #18181B;
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #ECC880 0%, #C5A059 50%, #9A7B38 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(236, 200, 128, 0.12) 0%, rgba(197, 160, 89, 0.04) 100%);
  --gold-gradient-radial: radial-gradient(circle at center, rgba(197, 160, 89, 0.2) 0%, rgba(15, 15, 15, 0) 70%);
  --dark-gradient: linear-gradient(180deg, #070707 0%, #141414 100%);
  
  /* Borders & Shadows */
  --border-gold: 1px solid rgba(197, 160, 89, 0.25);
  --border-gold-light: 1px solid rgba(197, 160, 89, 0.5);
  --shadow-gold: 0 10px 25px -5px rgba(197, 160, 89, 0.3);
  --shadow-gold-hover: 0 15px 35px -5px rgba(197, 160, 89, 0.5);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.7);
  
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--color-bg-darkest);
  color: var(--color-text-light);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Typography Classes */
.font-playfair { font-family: 'Playfair Display', Georgia, serif; }
.font-cormorant { font-family: 'Cormorant Garamond', Garamond, serif; }
.font-montserrat { font-family: 'Montserrat', sans-serif; }

.tracking-luxury { letter-spacing: 0.2em; }
.tracking-ultra { letter-spacing: 0.35em; }

/* Gold Effects */
.text-gold { color: var(--color-gold); }
.text-gold-light { color: var(--color-gold-light); }
.text-gold-dark { color: var(--color-gold-dark); }
.bg-gold { background-color: var(--color-gold); }
.bg-gold-dark { background-color: var(--color-gold-dark); }
.border-gold { border-color: var(--color-gold); }

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-glow {
  text-shadow: 0 0 25px rgba(197, 160, 89, 0.45);
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  height: 1px;
  width: 50px;
  background: var(--gold-gradient);
  opacity: 0.6;
}

.gold-divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #070707; }
::-webkit-scrollbar-thumb { background: #262118; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-dark); }

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #070707;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  color: #000;
}

.btn-gold:hover::after {
  left: 100%;
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #070707;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #070707;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Glass Panels & Luxury Cards */
.glass-panel {
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-gold);
  border-radius: 4px;
}

.glass-panel-light {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.luxury-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(197, 160, 89, 0.12);
}

.luxury-card:hover::before {
  opacity: 1;
}

/* Header & Navigation */
header {
  transition: all 0.35s ease;
}

header.scrolled {
  background: rgba(7, 7, 7, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.nav-link {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Service & Price Rows */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(197, 160, 89, 0.2);
  transition: var(--transition-smooth);
}

.price-row:hover {
  border-bottom-color: var(--color-gold);
  padding-left: 0.35rem;
}

.price-tag {
  color: var(--color-gold-light);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
}

/* Branch Cards */
.branch-card {
  background: #111111;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 4px;
  padding: 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
}

.branch-card:hover {
  background: #161616;
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(197, 160, 89, 0.1);
}

.branch-badge {
  background: rgba(197, 160, 89, 0.12);
  color: var(--color-gold-light);
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}

/* Form Controls */
.luxury-input {
  background: #141414;
  border: 1px solid rgba(197, 160, 89, 0.22);
  color: #fff;
  padding: 0.8rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 2px;
  width: 100%;
  transition: var(--transition-smooth);
}

.luxury-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #1a1a1a;
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.2);
}

.luxury-input::placeholder {
  color: #71717A;
  font-size: 0.8rem;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 45;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070707;
  background: var(--gold-gradient);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(197, 160, 89, 0.6);
}

/* Modal and Drawer Backdrop */
.modal-overlay {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ==========================================================================
   HERO LUXURY SLIDESHOW STYLES
   ========================================================================== */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
  transform: scale(1.08);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-indicator {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-indicator.active {
  width: 50px;
  background: linear-gradient(90deg, #FDE68A, #C5A059);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.7);
}

.hero-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: #ECC880;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-nav-btn:hover {
  background: #C5A059;
  color: #000;
  border-color: #FDE68A;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.hero-glass-box {
  background: radial-gradient(circle at center, rgba(15, 15, 15, 0.75) 0%, rgba(7, 7, 7, 0.85) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
