/* ==========================================================================
   SHAXBER (شاخبەر) - Luxury Coming Soon Stylesheet
   Color Palette: Deep Obsidian Black (#080808), Pure Gold (#D4AF37),
   Light Gold (#F7E298), Bronze (#8C6B1C)
   ========================================================================== */

:root {
  --bg-main: #090909;
  --bg-secondary: #111111;
  --bg-card: rgba(18, 18, 18, 0.75);
  --bg-card-hover: rgba(25, 25, 25, 0.85);
  
  --gold-primary: #d4af37;
  --gold-light: #f9e29a;
  --gold-bright: #ffe89e;
  --gold-dark: #9a7822;
  --gold-gradient: linear-gradient(135deg, #fbe7a1 0%, #d4af37 45%, #9a7822 80%, #e5c158 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(154, 120, 34, 0.05));
  --gold-border: rgba(212, 175, 55, 0.3);
  --gold-border-glow: rgba(212, 175, 55, 0.6);

  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --text-gold: #e5c158;

  --font-kurdish: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-english: 'Cinzel', serif;
  --font-sans: 'Montserrat', sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.25);
  --shadow-gold-heavy: 0 0 50px rgba(212, 175, 55, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-kurdish);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  direction: rtl;
}

/* English / LTR mode switch */
body.ltr-mode {
  direction: ltr;
  font-family: var(--font-sans);
}

body.ltr-mode .hero-brand-name {
  font-family: var(--font-english);
  letter-spacing: 4px;
}

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

/* Canvas & Background Atmosphere */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bg-ambient-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(154, 120, 34, 0.04) 45%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 12s ease-in-out infinite alternate;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes pulseGlow {
  0% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-50%) scale(1.15);
    opacity: 1;
  }
}

/* Container */
.site-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.main-header {
  padding: 28px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  gap: 16px;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mini img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  object-fit: cover;
  transition: var(--transition-smooth);
}

.brand-mini:hover img {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

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

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

.brand-mini-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Button & Switch Pills */
.btn-pill {
  background: rgba(25, 25, 25, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-pill:hover {
  border-color: var(--gold-primary);
  color: var(--gold-bright);
  background: rgba(40, 35, 25, 0.9);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-pill i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 45px 16px 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.status-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: blinkDot 2s ease-in-out infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.status-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Logo Showcase Stage */
.logo-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-bottom: 30px;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-halo-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  border-radius: 30px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.3) 0%, rgba(154, 120, 34, 0.1) 50%, transparent 75%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.logo-display-card {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1024 / 682;
  background: #000;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(212, 175, 55, 0.25),
    inset 0 0 20px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.logo-display-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(212, 175, 55, 0.45),
    inset 0 0 30px rgba(212, 175, 55, 0.15);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

/* Logo switch toggle pills */
.logo-switch-controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  position: relative;
  z-index: 3;
}

.logo-opt-btn {
  background: rgba(20, 20, 20, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-secondary);
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.logo-opt-btn i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.logo-opt-btn.active, .logo-opt-btn:hover {
  border-color: var(--gold-primary);
  color: #fff;
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Brand Headings */
.hero-brand-name {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, #f9e29a 30%, #d4af37 60%, #9a7822 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
}

.hero-brand-en {
  font-family: var(--font-english);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-slogan {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  max-width: 680px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 30px;
}

.gold-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.gold-divider i {
  color: var(--gold-primary);
  font-size: 0.95rem;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

/* Store Concept Showcase Section */
.store-concept-section {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 40px;
}

.store-concept-card {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
  position: relative;
  backdrop-filter: blur(10px);
}

.store-concept-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 45px rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.store-concept-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.15), rgba(15, 15, 15, 0.95));
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.8px;
}

.store-concept-badge i {
  color: var(--gold-primary);
}

.store-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 725;
  overflow: hidden;
  background: #000;
}

.store-concept-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-concept-card:hover .store-concept-img {
  transform: scale(1.03);
}

.store-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.store-overlay-title {
  font-family: var(--font-english);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-primary);
}

.store-overlay-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Notify / Subscription Card */
.notify-wrapper {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 40px;
}

.notify-form {
  display: flex;
  gap: 8px;
  background: rgba(16, 16, 16, 0.9);
  border: 1px solid var(--gold-border);
  padding: 6px;
  border-radius: 40px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(212, 175, 55, 0.12);
  transition: var(--transition-smooth);
}

.notify-form:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(212, 175, 55, 0.25);
}

.notify-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.notify-input::placeholder {
  color: var(--text-muted);
}

.btn-gold {
  background: var(--gold-gradient);
  border: none;
  color: #121212;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  white-space: nowrap;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.55);
  filter: brightness(1.08);
}

.btn-gold:active {
  transform: translateY(0);
}

.notify-msg {
  font-size: 0.85rem;
  margin-top: 10px;
  min-height: 20px;
  transition: var(--transition-smooth);
}

.notify-msg.success {
  color: #4ade80;
}

.notify-msg.error {
  color: #f87171;
}

/* Feature Pillars Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 10px auto 44px;
}

.feature-card {
  background: rgba(18, 18, 18, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border-glow);
  background: rgba(24, 24, 24, 0.85);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
}

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

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.2);
}

.feature-icon-wrapper i {
  color: var(--gold-primary);
  font-size: 1.35rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact & Social Links */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  color: var(--gold-bright);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}

.social-btn.whatsapp {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(18, 30, 22, 0.75);
  padding: 12px 26px;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(37, 211, 102, 0.15);
}

.social-btn.whatsapp i {
  color: #25D366;
  font-size: 1.35rem;
}

.social-btn.whatsapp:hover {
  border-color: #25D366;
  color: #fff;
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 211, 102, 0.35);
  transform: translateY(-3px);
}

.wa-phone-number {
  font-family: var(--font-english), monospace;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #4ade80;
  background: rgba(37, 211, 102, 0.12);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.25);
  font-weight: 700;
}

/* 18+ Warning Badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: rgba(255, 60, 60, 0.08);
  border: 1px solid rgba(255, 60, 60, 0.25);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #fca5a5;
  margin-top: 10px;
}

.age-badge i {
  font-size: 0.85rem;
}

/* Footer */
.main-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

/* Toast / Modal Feedback */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.3);
  padding: 14px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(15px);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 860px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  
  .hero-brand-name {
    font-size: 2.8rem;
  }
  
  .hero-brand-en {
    font-size: 1.15rem;
    letter-spacing: 3px;
  }

  .main-header {
    flex-direction: column;
    gap: 14px;
  }

  .logo-stage {
    max-width: 520px;
  }
}

@media (max-width: 540px) {
  .hero-brand-name {
    font-size: 2.2rem;
  }

  .logo-stage {
    max-width: 100%;
  }

  .logo-display-card {
    border-radius: 14px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 10px;
  }

  .btn-gold {
    justify-content: center;
    border-radius: 14px;
  }
}
