/* ============================================
   ULTRA-LUXURY STYLING
   Violet Rae - Premium Positioning
   ============================================ */

/* Luxury Gold Accents */
.section__label {
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 1px;
  background: var(--luxury-gradient);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Premium Service Cards */
.services-list li {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(244, 229, 194, 0.15) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.services-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.services-list li:hover::before {
  left: 100%;
}

.services-list li:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 10px 30px rgba(212, 175, 55, 0.3),
    0 0 20px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}

.services-rate {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Luxury Note Box */
.luxury-note {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05),
    rgba(244, 229, 194, 0.08)
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.luxury-note::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  animation: luxuryGlow 8s ease-in-out infinite;
}

@keyframes luxuryGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.1); }
}

.luxury-note strong {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Enhanced Primary Button - Luxury Edition */
.primary-button--luxury {
  background: linear-gradient(135deg, var(--pink), var(--gold), var(--blue));
  background-size: 200% 200%;
  animation: luxuryButtonGradient 3s ease infinite;
  box-shadow: 
    0 14px 28px rgba(111, 63, 124, 0.45),
    0 0 20px rgba(212, 175, 55, 0.3);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.primary-button--luxury:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 18px 40px rgba(111, 63, 124, 0.55),
    0 0 30px rgba(212, 175, 55, 0.5);
}

/* Testimonial Cards - Premium */
.testimonial-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(244, 229, 194, 0.1)
  );
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--luxury-gradient);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.testimonial-stars {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Gallery Tiles - Luxury Borders */
.gallery-tile {
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--luxury-gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-tile:hover::after {
  opacity: 0.6;
}

/* Section Cards - Premium Enhancement */
.section {
  background: linear-gradient(
    145deg,
    rgba(225, 241, 255, 0.98),
    rgba(255, 231, 247, 0.98),
    rgba(244, 229, 194, 0.1)
  );
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow:
    0 28px 60px rgba(3, 4, 10, 0.85),
    0 0 0 1px rgba(212, 175, 55, 0.1);
}

/* Luxury Divider */
.section__grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
}

/* Premium Pills */
.pill {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(244, 229, 194, 0.3)
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.pill::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pill:hover::before {
  opacity: 1;
}

/* Brand Mark - Gold Icon */
.brand-mark__icon {
  background: var(--luxury-gradient);
  box-shadow: 
    0 4px 12px rgba(212, 175, 55, 0.4),
    0 0 20px rgba(212, 175, 55, 0.3);
  animation: brandIconGlow 3s ease-in-out infinite;
}

@keyframes brandIconGlow {
  0%, 100% { box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 4px 12px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.5); }
}

/* Stat Numbers - Gold Gradient */
.stat-number {
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  animation: statGlow 3s ease-in-out infinite;
}

@keyframes statGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)); }
}

/* Lightbox - Premium */
.lightbox {
  background: rgba(2, 3, 10, 0.99);
}

.lightbox__image {
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.2);
}

/* Navigation Active State */
.nav-link.active {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Scroll Progress - Gold */
.scroll-progress {
  background: var(--luxury-gradient);
  height: 4px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Form Inputs - Luxury Touch */
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 4px 12px rgba(212, 175, 55, 0.1);
}

/* Footer - Gold Accent */
footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Preloader - Luxury Version */
.preloader__logo {
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.preloader__progress {
  background: var(--luxury-gradient);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Message Template Styling */
.message-template {
  white-space: pre-wrap;
  font-family: 'Inter', monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(244, 229, 194, 0.2)
  );
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin: 1.5rem 0;
  overflow-x: auto;
  color: rgba(16, 22, 36, 0.85);
  box-shadow: 
    0 4px 12px rgba(212, 175, 55, 0.1),
    inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.message-template::selection {
  background: rgba(212, 175, 55, 0.3);
}

/* Responsive Luxury */
@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .luxury-note {
    padding: 1.5rem;
  }
  
  .services-rate {
    font-size: 1.1rem;
  }

  .message-template {
    font-size: 0.8rem;
    padding: 1.2rem;
    border-radius: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

