/* Vurét Luxury Design System - Pixel Perfect Clone with Original Colors */

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

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

body {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Custom Properties for Animations */
:root {
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-fast: all 0.15s ease;
  --shadow-luxury: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-luxury-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
  }
  50% {
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.6), 0 0 40px rgba(201, 169, 97, 0.3);
  }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.animation-delay-600 {
  animation-delay: 0.6s;
}

/* Glassmorphism Effects */
.glass-effect {
  background: linear-gradient(135deg, rgba(26, 44, 91, 0.8) 0%, rgba(13, 27, 42, 0.8) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.glass-effect-light {
  background: linear-gradient(135deg, rgba(74, 111, 165, 0.4) 0%, rgba(26, 44, 91, 0.4) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 97, 0.1);
}

/* Typography Enhancements */
.text-shadow-luxury {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #d4b374 0%, #c9a961 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Button Styles */
.btn-burgundy {
  background: linear-gradient(135deg, #6b2c3e 0%, #5a2433 100%);
  box-shadow: 0 4px 15px -3px rgba(107, 44, 62, 0.4);
  position: relative;
  overflow: hidden;
}

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

.btn-burgundy:hover::before {
  left: 100%;
}

.btn-burgundy:hover {
  box-shadow: 0 10px 25px -5px rgba(107, 44, 62, 0.5);
  transform: translateY(-2px);
}

.btn-gold-outline {
  border: 2px solid #c9a961;
  color: #c9a961;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-gold-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(201, 169, 97, 0.1);
  transition: width 0.3s ease;
}

.btn-gold-outline:hover::before {
  width: 100%;
}

.btn-gold-outline:hover {
  border-color: #d4b374;
  color: #d4b374;
  text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

/* Navigation Enhancements */
.nav-floating {
  animation: fadeInUp 0.8s ease-out;
}

.nav-link-luxury {
  position: relative;
  padding-bottom: 2px;
}

.nav-link-luxury::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c9a961, #d4b374);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

/* Card Hover Effects */
.card-luxury {
  transition: all 0.3s ease;
  position: relative;
}

.card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.card-luxury:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 169, 97, 0.4) !important;
}

/* Mobile Menu Specific Styles */
#mobile-menu {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

#mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #c9a961, #d4b374);
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.mobile-nav-link:hover::before {
  height: 60%;
}

/* Mobile Menu Toggle Animation */
#mobile-menu-toggle {
  position: relative;
  transition: all 0.3s ease;
}

#mobile-menu-toggle.active {
  background: rgba(201, 169, 97, 0.15);
  border-radius: 50%;
  padding: 8px;
}

#mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

#mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#mobile-menu-toggle span {
  transition: all 0.3s ease;
}

#mobile-menu-toggle.active span {
  background: #d4b374 !important;
  height: 3px;
}

/* Hero Section Enhancements */
.hero-overlay {
  background: radial-gradient(ellipse at center top, transparent 0%, rgba(13, 27, 42, 0.4) 50%, rgba(13, 27, 42, 0.9) 100%);
}

/* Product Card Special Effects */
.product-card-glow {
  position: relative;
}

.product-card-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.product-card-glow:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Trust Badge Animations */
.trust-badge {
  animation: fadeInUp 1s ease-out;
}

.trust-badge:nth-child(1) {
  animation-delay: 0.1s;
}

.trust-badge:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-badge:nth-child(3) {
  animation-delay: 0.3s;
}

.trust-badge:nth-child(4) {
  animation-delay: 0.4s;
}

/* Step Number Badges */
.step-number-badge {
  box-shadow: 0 4px 10px -2px rgba(201, 169, 97, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

/* FAQ Accordion */
.faq-item {
  transition: all 0.3s ease;
}

.faq-trigger {
  transition: all 0.3s ease;
}

.faq-trigger:hover {
  background: rgba(201, 169, 97, 0.05);
}

.faq-trigger.active span:last-child {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content.active {
  max-height: 500px;
  padding-top: 0;
}

/* Testimonial Cards */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: rgba(201, 169, 97, 0.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* Image Placeholders */
img:not([src]) {
  background: linear-gradient(135deg, #1a2c5b 0%, #0d1b2a 100%);
  position: relative;
}

img:not([src])::after {
  content: 'Loading...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(201, 169, 97, 0.3);
  font-size: 12px;
}

/* Smooth Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a961, #d4b374);
  z-index: 100;
  transition: width 0.2s ease;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

/* Focus States for Accessibility */
*:focus {
  outline: 2px solid #c9a961;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #c9a961;
  outline-offset: 2px;
}

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

::-webkit-scrollbar-track {
  background: #0d1b2a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c9a961, #d4b374);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d4b374, #c9a961);
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
  .hero-title-responsive {
    font-size: 2.5rem !important;
  }

  .hero-subtitle-responsive {
    font-size: 1rem !important;
  }
}

/* Utility Classes */
.backdrop-blur-luxury {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.shadow-luxury {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.shadow-luxury-lg {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.shadow-gold {
  box-shadow: 0 10px 30px -10px rgba(201, 169, 97, 0.3);
}

.border-gradient {
  border-image: linear-gradient(135deg, #c9a961, #d4b374) 1;
}

/* Performance Optimizations */
.will-change-transform {
  will-change: transform;
}

.hardware-accelerate {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .glass-effect {
    background: rgba(26, 44, 91, 0.95);
    border: 2px solid #c9a961;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark Mode Optimizations (already dark by default) */
@media (prefers-color-scheme: dark) {
  img {
    opacity: 0.95;
  }
}

/* Custom Selection Colors */
::selection {
  background: rgba(201, 169, 97, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(201, 169, 97, 0.3);
  color: #ffffff;
}