/* ==========================================================================
   Pashu Market - Simple & Ultra-Attractive "Coming Soon" Landing Page
   Aesthetic Dark & Light Theme | Responsive | Glassmorphism
   ========================================================================== */

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

:root {
  /* Color Tokens - Dark Mode Default for High Surprise Impact */
  --bg-dark: #03140e;
  --bg-card: rgba(6, 38, 28, 0.7);
  --bg-card-border: rgba(34, 197, 94, 0.25);
  
  --primary-green: #10b981;
  --bright-leaf: #22c55e;
  --accent-gold: #fbbf24;
  --accent-amber: #f59e0b;
  --glow-green: rgba(34, 197, 94, 0.35);
  --glow-gold: rgba(245, 158, 11, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-highlight: #34d399;

  --input-bg: rgba(4, 25, 18, 0.8);
  --input-border: rgba(34, 197, 94, 0.3);
  
  /* Fonts & Shadows */
  --font-main: 'Plus Jakarta Sans', 'Noto Sans Devanagari', -apple-system, sans-serif;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.2);
  --shadow-gold-glow: 0 0 35px rgba(245, 158, 11, 0.25);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5);

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

/* Light Theme Overrides */
[data-theme="light"] {
  --bg-dark: #f2f7f4;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-border: rgba(16, 185, 129, 0.2);
  
  --primary-green: #059669;
  --bright-leaf: #16a34a;
  --accent-gold: #d97706;
  --accent-amber: #b45309;
  --glow-green: rgba(16, 185, 129, 0.2);
  --glow-gold: rgba(217, 119, 6, 0.15);

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-highlight: #059669;

  --input-bg: #ffffff;
  --input-border: rgba(16, 185, 129, 0.3);

  --shadow-card: 0 20px 50px rgba(16, 185, 129, 0.08);
}

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

html, body {
  min-height: 100vh;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Ambient Background Glows */
.bg-ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 10s infinite alternate ease-in-out;
}
.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--glow-green);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
.glow-2 {
  width: 450px;
  height: 450px;
  background: var(--glow-gold);
  bottom: -100px;
  right: -50px;
  animation-delay: -3s;
}
.glow-3 {
  width: 350px;
  height: 350px;
  background: rgba(52, 211, 153, 0.15);
  top: 40%;
  left: -100px;
  animation-delay: -6s;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}

/* Floating Sparkles */
.floating-sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sparkle-dot {
  position: absolute;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatUp 8s infinite linear;
  opacity: 0;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Header & Navbar */
.navbar {
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition-smooth);
}
.brand-logo-wrapper:hover {
  transform: translateY(-2px);
}
.brand-icon {
  font-size: 2.2rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--bg-card-border);
  padding: 0.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.brand-title {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffffff 0%, var(--bright-leaf) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .brand-name {
  background: linear-gradient(135deg, #0f172a 0%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 3px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--bright-leaf);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  color: var(--text-main);
  font-size: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}
.theme-toggle-btn:hover {
  transform: rotate(20deg) scale(1.08);
  box-shadow: var(--shadow-glow);
}

/* Main Layout */
.main-wrapper {
  padding: 2.5rem 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
}
.hero-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

/* Announcement Badge */
.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-gold-glow);
  animation: bounceSoft 3s ease-in-out infinite;
}
@keyframes bounceSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

/* Title & Subtitle */
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 850px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--bright-leaf) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 680px;
  font-weight: 500;
}
.highlight-surprise {
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(245, 158, 11, 0.4);
  text-underline-offset: 4px;
}

/* Interactive Mystery Box */
.mystery-box {
  background: var(--bg-card);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 1.2rem 2rem;
  max-width: 580px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold-glow);
}
.mystery-box:hover {
  transform: translateY(-3px) scale(1.02);
  border-style: solid;
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.08);
}
.mystery-box-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.mystery-icon {
  font-size: 2.2rem;
  animation: giftWiggle 2.5s infinite ease-in-out;
}
@keyframes giftWiggle {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-12deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  50% { transform: rotate(0deg); }
}
.mystery-content {
  text-align: left;
}
.mystery-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
}
.mystery-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  font-weight: 500;
}

/* Countdown Card */
.countdown-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  width: 100%;
  max-width: 680px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}
.countdown-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.timer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}
[data-theme="light"] .timer-card {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
}
.timer-card:hover {
  transform: translateY(-4px);
  border-color: var(--bright-leaf);
  box-shadow: var(--shadow-glow);
}
.timer-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}
.timer-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bright-leaf);
  text-transform: uppercase;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* Notify / Action Form */
.notify-box-wrapper {
  width: 100%;
  max-width: 580px;
  margin-top: 0.5rem;
}
.notify-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.hero-action-box {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
@media (max-width: 580px) {
  .hero-action-box {
    flex-direction: column;
  }
}
.input-group {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 1.2rem;
  font-size: 1.1rem;
  pointer-events: none;
}
.hero-input {
  width: 100%;
  padding: 1.1rem 1.2rem 1.1rem 3rem;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}
.hero-input:focus {
  border-color: var(--bright-leaf);
  box-shadow: 0 0 25px var(--glow-green);
}
.hero-submit-btn {
  background: linear-gradient(135deg, var(--bright-leaf) 0%, var(--primary-green) 100%);
  color: #ffffff;
  border: none;
  padding: 1.1rem 1.8rem;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, #22c55e 0%, #047857 100%);
}
.form-privacy-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Footer */
.minimal-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--bg-card-border);
  position: relative;
  z-index: 10;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact Support Interactive Dropdown */
.contact-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.footer-contact-btn {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  color: var(--bright-leaf);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}
.footer-contact-btn:hover {
  border-color: var(--bright-leaf);
  color: #ffffff;
  background: var(--bright-leaf);
  box-shadow: var(--shadow-glow);
}
.dropdown-arrow {
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}
.footer-contact-btn.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu Popover */
.contact-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--bright-leaf);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  width: 260px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}
[data-theme="light"] .dropdown-item {
  background: rgba(16, 185, 129, 0.05);
}
.dropdown-item:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: var(--bright-leaf);
  transform: translateX(4px);
}
.item-icon {
  font-size: 1.4rem;
}
.item-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}
.item-sub {
  font-size: 0.78rem;
  color: var(--bright-leaf);
  font-weight: 600;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--bright-leaf);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}
.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}
.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.modal-close-btn {
  background: var(--bright-leaf);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}
.modal-close-btn:hover {
  background: #16a34a;
  box-shadow: var(--shadow-glow);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-container {
    gap: 1.25rem;
  }
  .timer-grid {
    gap: 0.6rem;
  }
  .timer-card {
    padding: 0.75rem 0.25rem;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-dropdown-menu {
    right: 50%;
    transform: translateX(50%) translateY(10px) scale(0.95);
  }
  .contact-dropdown-menu.active {
    transform: translateX(50%) translateY(0) scale(1);
  }
}
