/* =================== ULTRA PREMIUM HOME SECTION =================== */

:root {
  --primary: #00d4ff;
  --secondary: #ff0080;
  --accent: #00ff88;
  --dark-bg: #0a0a1a;
  --darker-bg: #050510;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
  --gradient-secondary: linear-gradient(135deg, #ff0080 0%, #ff8000 100%);
  --gradient-accent: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a1a 0%, #050510 100%);
  --shadow-glow: 0 0 50px rgba(0, 212, 255, 0.5);
  --shadow-intense: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* HOME SECTION - Quantum Enhanced */
.home-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--darker-bg);
  color: white;
  padding: 0 20px;
}

/* Quantum Background */
.quantum-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.quantum-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  animation: floatShape 15s ease-in-out infinite;
}

.shape-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 25%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation: floatShape 30s ease-in-out infinite reverse;
}

.holographic-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
}

/* Floating Navigation Dots */
.floating-nav-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-dot.active {
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary);
  transform: scale(1.3);
}

.nav-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-dot:hover::after {
  opacity: 0.5;
}

/* Home Content */
.home-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 20px;
}

/* Hero Text */
.hero-text {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.badge-container {
  margin-bottom: 30px;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 191, 36, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
  animation: badgeGlow 3s ease-in-out infinite;
}

.section-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 30px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gradient-text {
  background: var(--gradient-primary);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 3s ease infinite;
}

.holographic-text {
  font-size: clamp(2rem, 5vw, 4rem);
  color: white;
  text-shadow: 
    0 0 20px rgba(0, 212, 255, 0.5),
    0 0 40px rgba(0, 212, 255, 0.3),
    0 0 60px rgba(0, 212, 255, 0.1);
  animation: hologramShimmer 4s ease-in-out infinite;
}

.section-description {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.text-reveal {
  opacity: 0;
  animation: textReveal 1s ease forwards;
  animation-delay: 1s;
}

.highlighted-text {
  color: var(--accent);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlighted-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  animation: expandLine 2s ease forwards;
  animation-delay: 2s;
}

/* CTA Container */
.cta-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.quantum-btn {
  position: relative;
  padding: 18px 40px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quantum-btn .btn-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-primary);
  filter: blur(20px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.quantum-btn:hover .btn-glow {
  opacity: 0.6;
}

.quantum-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.glass-btn {
  position: relative;
  padding: 18px 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.glass-btn .btn-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.glass-btn:hover .btn-hover-effect {
  left: 100%;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
}

.neon-btn {
  padding: 18px 30px;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 15px;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: neonPulse 2s ease-in-out infinite;
}

.neon-btn:hover {
  background: var(--accent);
  color: var(--dark-bg);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--accent);
}

/* Hero Stats Container */
.hero-stats-container {
  margin: 60px 0;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.holographic-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.holographic-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  position: relative;
}

.icon-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 30px;
  background: var(--gradient-primary);
  animation: pulse 2s ease-in-out infinite;
  opacity: 0.5;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.stat-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.holographic-card:hover .stat-glow {
  opacity: 0.1;
}

/* Tech Badges */
.tech-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.badge {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.badge i {
  color: var(--primary);
}

/* Advanced Scroll Indicator */
.scroll-indicator-advanced {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 100;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInOut 3s ease-in-out infinite;
}

.scroll-line {
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.scroll-progress {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  animation: scrollProgress 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  position: relative;
}

.mouse-body {
  width: 100%;
  height: 100%;
  position: relative;
}

.mouse-wheel {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 12px;
  background: var(--primary);
  border-radius: 2px;
  animation: mouseScroll 2s ease-in-out infinite;
}

/* Animations */
@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
  50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.6); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes hologramShimmer {
  0%, 100% { 
    text-shadow: 
      0 0 20px rgba(0, 212, 255, 0.5),
      0 0 40px rgba(0, 212, 255, 0.3);
  }
  50% { 
    text-shadow: 
      0 0 30px rgba(0, 212, 255, 0.8),
      0 0 60px rgba(0, 212, 255, 0.5),
      0 0 80px rgba(0, 212, 255, 0.3);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  to { transform: scaleX(1); }
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.8); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes scrollProgress {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes mouseScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(15px); opacity: 0.5; }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Typing Animation */
.typing-text {
  overflow: hidden;
  border-right: 3px solid var(--primary);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: var(--primary); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-content {
    padding: 80px 15px;
  }
  
  .section-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }
  
  .cta-container {
    flex-direction: column;
    align-items: center;
  }
  
  .quantum-btn, .glass-btn, .neon-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .holographic-card {
    padding: 25px;
  }
  
  .floating-nav-dots {
    right: 15px;
  }
  
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .tech-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .scroll-indicator-advanced {
    bottom: 20px;
  }
}