/* NEXUS HOROLOGY - ULTRA LUXURY ARABIC DESIGN SYSTEM (RTL) */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cairo:wght@300;400;500;600;700;800;900&family=Cinzel:wght@400;600;700;900&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Color Palette - Deep Obsidian & Gold Studio */
  --bg-obsidian-deep: #050507;
  --bg-obsidian-card: rgba(14, 15, 20, 0.7);
  --bg-obsidian-solid: #0d0e12;
  --bg-obsidian-section: #090a0e;
  
  --gold-primary: #D4AF37;
  --gold-light: #F4E090;
  --gold-dark: #8C6D1F;
  --gold-gradient: linear-gradient(135deg, #F5D77F 0%, #D4AF37 50%, #8C6F24 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);

  --titanium-steel: #C5CBD3;
  --titanium-dark: #2B2F38;
  --titanium-gradient: linear-gradient(135deg, #E6EAEE 0%, #9AA0A8 50%, #4B5058 100%);

  --sapphire-blue: #00D2FF;
  --ruby-red: #FF3B5C;

  --text-main: #FFFFFF;
  --text-muted: #9AA0AC;
  --text-gold: #E5C467;

  --glass-border: rgba(212, 175, 55, 0.22);
  --glass-border-hover: rgba(245, 215, 127, 0.55);
  --glass-reflection: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.01) 60%, rgba(212,175,55,0.05) 100%);

  /* Arabic Luxury Typography */
  --font-arabic-sans: 'Cairo', system-ui, sans-serif;
  --font-arabic-serif: 'Amiri', serif;
  --font-brand-serif: 'Cinzel', serif;
  --font-mono: 'Space Mono', monospace;

  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-obsidian-deep);
  color: var(--text-main);
  font-family: var(--font-arabic-sans);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere & Volumetric Lighting */
.studio-stage {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: 
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(0, 210, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(140, 109, 31, 0.05) 0%, transparent 45%),
    var(--bg-obsidian-deep);
  overflow: hidden;
}

.studio-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

#dustCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Header & Navigation */
.header-nav {
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: 1440px;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-symbol::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-brand-serif);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 4px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-family: var(--font-arabic-sans);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 8px var(--gold-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.audio-toggle-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-gold);
  padding: 10px 20px;
  border-radius: 40px;
  font-family: var(--font-arabic-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.audio-toggle-btn:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow);
  background: rgba(212, 175, 55, 0.1);
}

.audio-wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.audio-bar {
  width: 2px;
  height: 100%;
  background: var(--gold-primary);
  animation: audioPulse 1.2s infinite ease-in-out alternate;
}

.audio-bar:nth-child(2) { animation-delay: 0.2s; }
.audio-bar:nth-child(3) { animation-delay: 0.4s; }

.audio-muted .audio-bar {
  animation: none;
  height: 3px;
  background: var(--text-muted);
}

@keyframes audioPulse {
  0% { height: 3px; }
  100% { height: 14px; }
}

/* Section Header Typography */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-arabic-sans);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-arabic-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
}

.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   HERO SHOWCASE & 3D PARALLAX CARD
   ============================================================ */
.hero-showcase {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  padding: 40px 20px;
}

.card-perspective-stage {
  position: relative;
  width: 440px;
  height: 580px;
  transform-style: preserve-3d;
  cursor: grab;
  transition: transform 0.1s ease-out;
}

.card-perspective-stage:active {
  cursor: grabbing;
}

.hero-glass-card {
  position: absolute;
  inset: 0;
  background: var(--bg-obsidian-card);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 30px rgba(212, 175, 55, 0.05),
    0 0 40px rgba(0, 0, 0, 0.9);
  transform-style: preserve-3d;
  overflow: visible;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.card-perspective-stage:hover .hero-glass-card {
  border-color: var(--glass-border-hover);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.9),
    0 0 50px var(--gold-glow),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: var(--glass-reflection);
  pointer-events: none;
  transform: translateZ(1px);
}

.card-tech-mark {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(212, 175, 55, 0.7);
  pointer-events: none;
  transform: translateZ(10px);
}

.mark-tl { top: 20px; right: 24px; }
.mark-tr { top: 20px; left: 24px; text-align: left; }
.mark-bl { bottom: 20px; right: 24px; }
.mark-br { bottom: 20px; left: 24px; text-align: left; }

.mark-edition-tag {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3px 10px;
  border-radius: 4px;
  color: var(--gold-light);
  font-family: var(--font-arabic-sans);
  font-weight: 600;
  font-size: 0.75rem;
}

.card-header-content {
  position: absolute;
  top: 45px;
  right: 30px;
  left: 30px;
  transform: translateZ(25px);
  pointer-events: none;
  z-index: 3;
}

.model-series {
  font-family: var(--font-brand-serif);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.model-name {
  font-family: var(--font-arabic-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.card-dial-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -40%) translateZ(15px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.dial-grid-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.18);
  animation: dialRotate 60s linear infinite;
}

@keyframes dialRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.card-specular-glare {
  position: absolute;
  inset: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 245, 210, 0.18) 0%, rgba(212, 175, 55, 0.05) 30%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateZ(40px);
  mix-blend-mode: overlay;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.popout-watch-wrapper {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%) translateZ(95px) scale(1.15);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  pointer-events: auto;
  z-index: 10;
}

.card-perspective-stage:hover .popout-watch-wrapper {
  transform: translate(-50%, -52%) translateZ(140px) scale(1.24);
  filter: drop-shadow(0 40px 45px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
}

.watch-image-render {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 30px rgba(0,0,0,0.9));
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.5s ease-in-out;
}

.tourbillon-glow-ring {
  position: absolute;
  top: 55%;
  left: 48%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%) translateZ(20px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  animation: tourbillonPulse 2s ease-in-out infinite alternate;
}

@keyframes tourbillonPulse {
  0% { transform: translate(-50%, -50%) translateZ(20px) scale(0.9); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) translateZ(25px) scale(1.15); opacity: 0.8; }
}

.card-footer-content {
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateZ(30px);
  z-index: 5;
}

.price-tag-group {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-hero-reserve {
  background: var(--gold-gradient);
  color: #08080A;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-arabic-sans);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}

.btn-hero-reserve:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #FFF0B8 0%, #E6C45E 100%);
}

.stage-floating-badge {
  position: absolute;
  background: rgba(14, 15, 20, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 14px 22px;
  border-radius: 18px;
  font-family: var(--font-arabic-sans);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  z-index: 15;
  transition: var(--transition-smooth);
}

.stage-badge-right {
  right: -130px;
  top: 35%;
  transform: translateZ(50px);
}

.stage-badge-left {
  left: -130px;
  top: 55%;
  transform: translateZ(60px);
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: bold;
  font-size: 0.9rem;
}

.badge-text-title {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-text-sub {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ============================================================
   SECTION 1: ART OF CRAFTSMANSHIP (فن الحرفية)
   ============================================================ */
.section-craftsmanship {
  position: relative;
  z-index: 10;
  padding: 100px 50px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.craft-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.craft-card {
  background: rgba(14, 15, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: right;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.craft-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.4s;
}

.craft-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 30px var(--gold-glow);
}

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

.craft-icon-num {
  font-family: var(--font-brand-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-primary);
  margin-bottom: 20px;
  opacity: 0.85;
}

.craft-card-title {
  font-family: var(--font-arabic-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.craft-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   SECTION 2: MASTER COLLECTION GRID (مجموعة الساعات)
   ============================================================ */
.section-collection {
  position: relative;
  z-index: 10;
  padding: 100px 50px;
  background: var(--bg-obsidian-section);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

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

.collection-filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-arabic-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 15px var(--gold-glow);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.collection-card {
  background: rgba(14, 15, 20, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.collection-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
}

.collection-img-box {
  width: 260px;
  height: 260px;
  margin-bottom: 20px;
  position: relative;
}

.collection-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0,0,0,0.8));
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-img {
  transform: scale(1.1) rotate(-3deg);
}

.collection-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.collection-name {
  font-family: var(--font-arabic-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  text-align: center;
}

.collection-spec {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.collection-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

.collection-price {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-collection-action {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-collection-action:hover {
  background: var(--gold-gradient);
  color: #08080A;
}

/* ============================================================
   SECTION 3: MECHANICAL TELEMETRY (الابتكار والدقة)
   ============================================================ */
.section-telemetry {
  position: relative;
  z-index: 10;
  padding: 100px 50px;
  max-width: 1440px;
  margin: 0 auto;
}

.telemetry-dashboard {
  background: rgba(14, 15, 20, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 50px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.telemetry-info-side h3 {
  font-family: var(--font-arabic-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.telemetry-info-side p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.9;
}

.metrics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 20px;
}

.metric-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.telemetry-visual-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 7, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 30px;
}

.telemetry-radar {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: radarRotate 40s linear infinite;
}

@keyframes radarRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-core {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 30px var(--gold-glow);
}

/* ============================================================
   SECTION 4: GENEVA HERITAGE TIMELINE (التراث السويسري)
   ============================================================ */
.section-heritage {
  position: relative;
  z-index: 10;
  padding: 100px 50px;
  background: var(--bg-obsidian-section);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

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

.heritage-timeline {
  position: relative;
  margin-top: 60px;
  padding-right: 30px;
  border-right: 2px solid rgba(212, 175, 55, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-right: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  right: -39px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-obsidian-deep);
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: var(--font-arabic-serif);
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 750px;
  line-height: 1.8;
}

/* ============================================================
   SECTION 5: VIP CONCIERGE & BESPOKE BOOKING (حجز الموعد)
   ============================================================ */
.section-concierge {
  position: relative;
  z-index: 10;
  padding: 100px 50px;
  max-width: 1440px;
  margin: 0 auto;
}

.concierge-box {
  background: linear-gradient(135deg, rgba(14, 15, 20, 0.9) 0%, rgba(20, 22, 30, 0.9) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.9), 0 0 50px var(--gold-glow);
}

.concierge-info h2 {
  font-family: var(--font-arabic-serif);
  font-size: 2.6rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.concierge-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

.concierge-features {
  list-style: none;
}

.concierge-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.concierge-features span {
  color: var(--gold-primary);
  font-weight: bold;
}

/* FOOTER */
.site-footer {
  position: relative;
  z-index: 20;
  background: #040405;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 60px 50px 30px;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
}

.footer-bottom {
  max-width: 1440px;
  margin: 25px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .craft-cards-grid, .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .telemetry-dashboard, .concierge-box { grid-template-columns: 1fr; }
  .stage-floating-badge { display: none; }
  .header-nav { padding: 20px 30px; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .craft-cards-grid, .collection-grid { grid-template-columns: 1fr; }
  .card-perspective-stage { width: 340px; height: 500px; }
  .popout-watch-wrapper { width: 300px; height: 300px; }
  .section-title { font-size: 2rem; }
  .concierge-box { padding: 30px; }
}
