/* ==========================================
   AVANTE - BEAUTY BEYOND TIME
   LUXURY DESIGN SYSTEM & STYLESHEET
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette (Extracted from content.jpeg) */
  --bg-dark: #0E0E0E;
  --bg-card: rgba(26, 26, 26, 0.75);
  --bg-card-hover: rgba(35, 35, 35, 0.9);
  --gold-primary: #C8A96A;
  --gold-light: #F2E9DB;
  --gold-dark: #9A7B3E;
  --cream: #F2E9DB;
  --espresso: #5C4632;
  --charcoal: #2B2B2B;
  
  /* System Tokens */
  --text-main: #F2E9DB;
  --text-muted: #A39B8E;
  --text-dark: #0E0E0E;
  --border-gold: rgba(200, 169, 106, 0.25);
  --border-gold-strong: rgba(200, 169, 106, 0.6);
  --glow-gold: 0 0 25px rgba(200, 169, 106, 0.35);
  --glow-strong: 0 0 40px rgba(200, 169, 106, 0.5);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
  
  /* Fonts */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

/* Selection */
::selection {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF 0%, #C8A96A 40%, #E5CA8F 70%, #9A7B3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-border-glow {
  border: 1px solid var(--border-gold);
  box-shadow: var(--glow-gold);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   1. PRELOADER SCREEN
   ========================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-monogram {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: var(--glow-gold);
  animation: pulseGlow 2s infinite alternate;
}

.preloader-monogram span {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.preloader-monogram::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gold-primary);
  border-bottom-color: var(--gold-light);
  animation: spinRing 2s linear infinite;
}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.3em;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.preloader-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.preloader-bar-wrapper {
  width: 240px;
  height: 3px;
  background: rgba(200, 169, 106, 0.15);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  transition: width 0.3s ease;
  box-shadow: var(--glow-gold);
}

.preloader-percent {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

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

@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(200, 169, 106, 0.2); }
  100% { box-shadow: 0 0 35px rgba(200, 169, 106, 0.6); }
}

/* ==========================================
   2. NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.4rem 0;
  background: rgba(14, 14, 14, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-primary);
  box-shadow: var(--glow-gold);
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-icon {
  transform: rotate(360deg);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
  box-shadow: var(--glow-gold);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-icon-cart {
  position: relative;
  background: rgba(200, 169, 106, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-icon-cart:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  box-shadow: var(--glow-gold);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-luxury-nav {
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
}

.btn-luxury-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-strong);
  background: linear-gradient(135deg, var(--gold-primary), var(--cream));
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 14, 0.98);
  border-bottom: 1px solid var(--border-gold);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-150%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav .nav-link {
  font-size: 1.1rem;
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(200, 169, 106, 0.08) 0%, rgba(14, 14, 14, 1) 70%);
}

#canvas-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(200, 169, 106, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 0.8rem;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-categories-pills {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cat-pill {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--gold-primary);
  text-transform: uppercase;
}

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

.btn-primary-gold {
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  color: var(--bg-dark);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(200, 169, 106, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-strong);
  background: linear-gradient(135deg, var(--gold-primary), #FFF);
}

.btn-secondary-glass {
  padding: 1rem 2.2rem;
  background: rgba(200, 169, 106, 0.05);
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
}

.btn-secondary-glass:hover {
  background: rgba(200, 169, 106, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

.hero-visual-wrap {
  position: relative;
  perspective: 1000px;
}

.hero-card-3d {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold-strong);
  box-shadow: var(--shadow-card), var(--glow-gold);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  background: var(--surface-card);
}

.hero-card-3d img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-card-3d:hover img {
  transform: scale(1.04);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-card-info h4 {
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.hero-card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================
   4. BRAND VALUES & BADGES SECTION
   ========================================== */
.brand-badges-section {
  padding: 4rem 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  z-index: 2;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
}

.badge-card {
  background: rgba(14, 14, 14, 0.6);
  border: 1px solid var(--border-gold);
  padding: 1.75rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-card:hover {
  transform: translateY(-5px);
  background: rgba(200, 169, 106, 0.1);
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.badge-title-en {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.badge-title-ar {
  font-size: 0.85rem;
  color: var(--gold-primary);
  direction: rtl;
}

/* ==========================================
   5. PRODUCT CATALOG SHOWCASE
   ========================================== */
.catalog-section {
  padding: 7rem 0;
  background: var(--bg-dark);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Catalog Filter Tabs */
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.8rem;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-weight: 700;
  box-shadow: var(--glow-gold);
}

/* Catalog Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.product-badge-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: blur(5px);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #141414;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.08);
}

.product-quick-actions {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-quick-actions {
  opacity: 1;
}

.btn-quick-view {
  padding: 0.6rem 1.2rem;
  background: var(--cream);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.75rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-quick-view:hover {
  background: var(--gold-primary);
  transform: scale(1.05);
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-name {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.product-specs {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 169, 106, 0.15);
}

.product-volume {
  font-size: 0.75rem;
  color: var(--gold-primary);
  font-weight: 500;
}

.btn-add-inquiry {
  padding: 0.5rem 1rem;
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-inquiry:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-weight: 700;
}

/* ==========================================
   6. BEAUTY ROUTINE & SHADE QUIZ SECTION
   ========================================== */
.quiz-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--charcoal) 50%, var(--bg-dark) 100%);
  position: relative;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.quiz-container {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(200, 169, 106, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.quiz-question-title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.quiz-option-card {
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-option-card:hover, .quiz-option-card.selected {
  background: var(--gold-primary);
  color: var(--bg-dark);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}

.quiz-option-card:hover h4, .quiz-option-card.selected h4,
.quiz-option-card:hover p, .quiz-option-card.selected p {
  color: var(--bg-dark) !important;
}

.quiz-option-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.quiz-option-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.quiz-option-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.quiz-progress-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.quiz-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.2);
  border: 1px solid var(--border-gold);
}

.quiz-dot.active {
  background: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.quiz-result-box {
  text-align: center;
}

.quiz-result-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   7. VIP CONTACT & LOCATION SECTION
   ========================================== */
.contact-section {
  padding: 7rem 0;
  background: var(--bg-dark);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-info-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-detail label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-detail p, .contact-detail a {
  font-size: 1.05rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--gold-primary);
}

.contact-map-frame {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  margin-top: 1.5rem;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(120%);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
  background: rgba(14, 14, 14, 0.95);
}

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

/* ==========================================
   8. SLIDE-OUT INQUIRY CART DRAWER
   ========================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-gold);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.btn-close-drawer {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-close-drawer:hover {
  color: var(--gold-primary);
}

.drawer-body {
  padding: 2rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 169, 106, 0.15);
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-info h5 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.cart-item-info p {
  font-size: 0.75rem;
  color: var(--gold-primary);
}

.btn-remove-item {
  background: none;
  border: none;
  color: #E74C3C;
  cursor: pointer;
  font-size: 0.9rem;
}

.drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-gold);
  background: var(--charcoal);
}

.whatsapp-dispatch-btn {
  width: 100%;
  padding: 1rem;
  background: #25D366;
  color: #FFF;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.whatsapp-dispatch-btn:hover {
  background: #1EBE57;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   9. QUICK VIEW MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-dark);
  border: 1px solid var(--border-gold-strong);
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--glow-gold);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  height: 100%;
  min-height: 380px;
  background: #141414;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.modal-close-btn:hover {
  color: var(--gold-primary);
}

/* ==========================================
   10. FOOTER
   ========================================== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border-gold);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 169, 106, 0.1);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--glow-gold);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  transform: translateY(-4px);
}

/* Floating WhatsApp Quick Action Pill */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: #25D366;
  color: #FFF;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.05);
}

/* ==========================================
   11. RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .btn-luxury-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-image {
    min-height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .btn-primary-gold, .btn-secondary-glass {
    width: 100%;
    justify-content: center;
  }
  .contact-info-card, .contact-form-card {
    padding: 2rem 1.25rem;
  }
}
