@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #0A1128;
  --color-secondary: #F1E4C3;
  --color-accent: #D1D5DB;
  --color-card: #1C2541;
  --color-highlight: #FFFFFF;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-luxury: 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--color-primary);
  color: var(--color-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform var(--transition-smooth), background var(--transition-fast);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  transition: all var(--transition-fast);
}

.logo:hover {
  color: var(--color-highlight);
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-secondary);
  transition: width var(--transition-smooth);
}

.nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--color-secondary);
  transition: all var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(28, 37, 65, 0.4), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(209, 213, 219, 0.1), transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 1.2s var(--transition-luxury);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-secondary), var(--color-highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   LUXURY HERO SECTIONS WITH ANIMATIONS
   ============================================ */

/* Home Hero - Elegant Particle Effect */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(135deg, #0A1128 0%, #1C2541 50%, #0A1128 100%);
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(241, 228, 195, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(209, 213, 219, 0.1) 0%, transparent 50%);
  animation: luxuryPulse 8s ease-in-out infinite;
}

.hero-home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(241, 228, 195, 0.03) 2px, rgba(241, 228, 195, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(241, 228, 195, 0.03) 2px, rgba(241, 228, 195, 0.03) 4px);
  animation: gridShift 20s linear infinite;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 15s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 19s; }

.hero-home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: elegantFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-home h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #FFFFFF 50%, var(--color-secondary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  position: relative;
}

.hero-home h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  animation: expandLine 1.5s ease-out 0.5s both;
}

.hero-home p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease-out 0.3s both;
  line-height: 1.8;
}

/* Collection Hero - Dynamic Geometric Shapes */
.hero-collection {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(135deg, #0A1128 0%, #1C2541 100%);
}

.hero-collection-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  border: 2px solid rgba(241, 228, 195, 0.2);
  animation: geometricFloat 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-duration: 25s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  border-radius: 50%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 20%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border: none;
  background: linear-gradient(135deg, rgba(241, 228, 195, 0.1), transparent);
  animation-duration: 22s;
  animation-delay: -10s;
}

.hero-collection-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: slideInFromBottom 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-collection h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-collection h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

.hero-collection p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease-out 0.4s both;
  line-height: 1.8;
}

/* Luxury Jewelry Hero - Opulent Glow Effect */
.hero-luxury {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
  background: radial-gradient(ellipse at center, #1C2541 0%, #0A1128 100%);
}

.hero-luxury::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(241, 228, 195, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: luxuryGlow 6s ease-in-out infinite;
  filter: blur(60px);
}

.hero-luxury::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(241, 228, 195, 0.03) 2deg, transparent 4deg);
  animation: rotateConic 30s linear infinite;
  pointer-events: none;
}

.luxury-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-secondary);
  animation: sparkleFloat 8s infinite ease-in-out;
}

.sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; left: 25%; animation-delay: 1s; }
.sparkle:nth-child(3) { top: 60%; left: 35%; animation-delay: 2s; }
.sparkle:nth-child(4) { top: 30%; right: 20%; animation-delay: 1.5s; }
.sparkle:nth-child(5) { top: 50%; right: 30%; animation-delay: 2.5s; }
.sparkle:nth-child(6) { top: 70%; right: 15%; animation-delay: 0.5s; }
.sparkle:nth-child(7) { top: 10%; left: 50%; animation-delay: 3s; }
.sparkle:nth-child(8) { bottom: 20%; left: 60%; animation-delay: 1.8s; }

.hero-luxury-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: luxuryFadeIn 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-luxury h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #FFFFFF 50%, var(--color-secondary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxuryShimmer 4s linear infinite;
  text-shadow: 0 0 30px rgba(241, 228, 195, 0.3);
  position: relative;
}

.hero-luxury h1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(241, 228, 195, 0.1) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero-luxury p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease-out 0.5s both;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Contact Hero - Elegant Wave Animation */
.hero-contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(135deg, #0A1128 0%, #1C2541 50%, #0A1128 100%);
}

.hero-contact-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200px;
  background: linear-gradient(90deg, transparent, rgba(241, 228, 195, 0.05), transparent);
  border-radius: 50%;
  animation: waveAnimation 15s infinite ease-in-out;
}

.wave-1 {
  animation-duration: 15s;
  opacity: 0.7;
}

.wave-2 {
  animation-duration: 20s;
  animation-delay: -5s;
  opacity: 0.5;
  height: 250px;
}

.wave-3 {
  animation-duration: 25s;
  animation-delay: -10s;
  opacity: 0.3;
  height: 300px;
}

.hero-contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: contactFadeIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-contact h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-contact h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), #FFFFFF, var(--color-secondary));
  animation: drawLine 1.5s ease-out 0.8s forwards;
}

.hero-contact p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease-out 0.6s both;
  line-height: 1.8;
}

/* Animations */
@keyframes luxuryPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes gridShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(50px) scale(1);
    opacity: 0;
  }
}

@keyframes elegantFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes expandLine {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100px;
    opacity: 1;
  }
}

@keyframes geometricFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
  }
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

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

@keyframes rotateConic {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes sparkleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(20px, -20px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translate(-15px, 15px) scale(0.8);
    opacity: 0.8;
  }
  75% {
    transform: translate(15px, 20px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes luxuryFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes luxuryShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

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

@keyframes waveAnimation {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(-25%) translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(360deg);
  }
}

@keyframes contactFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawLine {
  0% {
    width: 0;
  }
  100% {
    width: 150px;
  }
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-highlight);
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
}

.btn-primary:hover::before {
  width: 300%;
  height: 300%;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-top: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 400;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  transform: translateY(2rem);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.card:hover .card-img {
  transform: scale(1.1);
}

.card-content {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

.card-text {
  font-size: 0.85rem;
  color: var(--color-accent);
  line-height: 1.6;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-top: var(--space-sm);
  font-weight: 600;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-content {
  transform: translateX(-2rem);
  transition: all var(--transition-luxury);
}

.asymmetric-content.visible {
  transform: translateX(0);
  opacity: 1;
}

.asymmetric-image {
  position: relative;
  transform: translateX(2rem) rotate(2deg);
  transition: all var(--transition-luxury);
}

.asymmetric-image.visible {
  transform: translateX(0) rotate(0);
  opacity: 1;
}

.asymmetric-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-section {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) auto;
  max-width: 1200px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  background: rgba(10, 17, 40, 0.5);
  border: 1px solid rgba(209, 213, 219, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(10, 17, 40, 0.8);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: normal;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.info-item i {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-top: 0.2rem;
}

.info-item div h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--color-secondary);
}

.info-item div p {
  font-size: 0.85rem;
  color: var(--color-accent);
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.map-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.footer {
  padding: var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(209, 213, 219, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--color-card);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: bottom var(--transition-smooth);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 0.85rem;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.thank-you-content {
  max-width: 600px;
  animation: fadeInUp 1s var(--transition-luxury);
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

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

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.error-content {
  max-width: 600px;
}

.error-content h1 {
  font-size: 8rem;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.policy-section {
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.policy-section h1 {
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.policy-section h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
}

.policy-section p {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  line-height: 1.8;
}

.policy-section ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  color: var(--color-accent);
}

.policy-section li {
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-card);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .section {
    padding: var(--space-lg) var(--space-md);
  }
  
  .hero {
    padding: var(--space-md);
  }
  
  .hero-home,
  .hero-collection,
  .hero-luxury,
  .hero-contact {
    padding: var(--space-md);
    min-height: 80vh;
  }
  
  .hero-home-content,
  .hero-collection-content,
  .hero-luxury-content,
  .hero-contact-content {
    padding: 0 var(--space-sm);
  }
  
  .shape-1,
  .shape-2,
  .shape-3 {
    width: 150px;
    height: 150px;
  }
  
  .hero-luxury::before {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .header {
    padding: var(--space-sm);
  }
  
  .section {
    padding: var(--space-md) var(--space-sm);
  }
  
  .contact-section {
    padding: var(--space-md);
  }
  
  .hero-home,
  .hero-collection,
  .hero-luxury,
  .hero-contact {
    min-height: 70vh;
    padding: var(--space-md) var(--space-sm);
  }
  
  .hero-home h1,
  .hero-collection h1,
  .hero-luxury h1,
  .hero-contact h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-home p,
  .hero-collection p,
  .hero-luxury p,
  .hero-contact p {
    font-size: 0.95rem;
  }
  
  .shape-1,
  .shape-2,
  .shape-3 {
    width: 100px;
    height: 100px;
  }
  
  .hero-luxury::before {
    width: 400px;
    height: 400px;
  }
  
  .particle,
  .sparkle {
    width: 2px;
    height: 2px;
  }
}

/* ============================================
   MODERN LUXURY PAGE STYLES
   ============================================ */

.luxury-page {
  background: linear-gradient(135deg, #0A1128 0%, #1C2541 50%, #0A1128 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.luxury-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(241, 228, 195, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(209, 213, 219, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: luxuryPulse 10s ease-in-out infinite;
}

.luxury-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--space-xl) + 80px) var(--space-md) var(--space-xl);
  position: relative;
  z-index: 1;
}

.luxury-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.luxury-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  animation: expandLine 1.5s ease-out 0.5s both;
}

.luxury-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #FFFFFF 50%, var(--color-secondary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.luxury-subtitle {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.luxury-content {
  background: rgba(28, 37, 65, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(241, 228, 195, 0.1);
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

.luxury-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  padding-left: var(--space-sm);
  border-left: 3px solid var(--color-secondary);
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

.luxury-content h2:first-of-type {
  margin-top: 0;
}

.luxury-content p {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  line-height: 1.9;
  font-size: 0.95rem;
  animation: fadeIn 0.8s ease-out;
}

.luxury-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  color: var(--color-accent);
  list-style: none;
  position: relative;
}

.luxury-content ul li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.8;
  animation: fadeInLeft 0.6s ease-out;
}

.luxury-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.luxury-content a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: all var(--transition-fast);
}

.luxury-content a:hover {
  color: var(--color-highlight);
  text-decoration: none;
}

.luxury-date {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(241, 228, 195, 0.2);
  font-style: italic;
}

.luxury-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 228, 195, 0.3), transparent);
  margin: var(--space-lg) 0;
  animation: expandLine 1s ease-out;
}

.luxury-highlight {
  background: rgba(241, 228, 195, 0.05);
  border-left: 3px solid var(--color-secondary);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-radius: var(--radius-sm);
  animation: fadeIn 0.8s ease-out;
}

.luxury-highlight p {
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

/* 404 Page Specific Styles */
.error-404-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.error-404-content {
  text-align: center;
  max-width: 700px;
  z-index: 2;
  animation: elegantFadeIn 1.5s ease-out;
}

.error-404-number {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #FFFFFF 50%, var(--color-secondary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite, floatUp 3s ease-in-out infinite;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.error-404-icon {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  display: inline-block;
  animation: floatRotate 4s ease-in-out infinite;
}

.error-404-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.error-404-content p {
  font-size: 1.1rem;
  color: var(--color-accent);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* Thank You Page Specific Styles */
.thank-you-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.thank-you-content {
  text-align: center;
  max-width: 700px;
  z-index: 2;
  animation: elegantFadeIn 1.5s ease-out;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  display: inline-block;
  animation: pulseScale 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(241, 228, 195, 0.5));
}

.thank-you-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  border: none;
  padding: 0;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: var(--color-accent);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.thank-you-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatRotate {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(-5deg) translateY(-10px);
  }
  75% {
    transform: rotate(5deg) translateY(-10px);
  }
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

/* Responsive Styles for Luxury Pages */
@media (max-width: 768px) {
  .luxury-container {
    padding: calc(var(--space-lg) + 80px) var(--space-md) var(--space-lg);
  }
  
  .luxury-content {
    padding: var(--space-md);
  }
  
  .luxury-content h2 {
    font-size: 1.5rem;
    padding-left: var(--space-xs);
  }
  
  .error-404-buttons,
  .thank-you-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .error-404-buttons .btn,
  .thank-you-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .luxury-container {
    padding: calc(var(--space-md) + 80px) var(--space-sm) var(--space-md);
  }
  
  .luxury-content {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }
  
  .luxury-content ul {
    padding-left: var(--space-md);
  }
  
  .luxury-content ul li {
    padding-left: var(--space-sm);
    font-size: 0.9rem;
  }
}
