/* Ultimate Hero Section Redesign - Bold & Modern */

.hero-ultimate {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000000;
}

/* Video/Image Background Layer */
.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-media video,
.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay with Gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 26, 51, 0.9) 100%
  );
}

/* Animated Grid Pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Main Container */
.hero-ultimate-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0 5%;
}

/* Two Column Layout */
.hero-ultimate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Left Side - Text Content */
.hero-left {
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animated Badge */
.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 100px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.hero-premium-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.badge-text {
  color: #ffd700;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* Main Headline */
.hero-ultimate-title {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 30px;
  color: #ffffff;
  position: relative;
}

.hero-highlight {
  position: relative;
  color: transparent;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Subtitle */
.hero-ultimate-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 600px;
}

/* CTA Buttons with Hover Effects */
.hero-ultimate-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-ultimate-btn {
  position: relative;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s;
}

.hero-btn-glow {
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  color: #000000;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  position: relative;
}

.hero-btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  border-radius: 50px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
  filter: blur(10px);
}

.hero-btn-glow:hover::before {
  opacity: 1;
}

.hero-btn-glow:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

.hero-btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  position: relative;
}

.hero-btn-glass::after {
  content: '→';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.hero-btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateX(5px);
}

.hero-btn-glass:hover::after {
  transform: translateY(-50%) translateX(5px);
}

/* Stats Row */
.hero-stats-row {
  display: flex;
  gap: 40px;
}

.hero-stat-item {
  position: relative;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #ffd700;
  display: block;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right Side - Visual Element */
.hero-right {
  position: relative;
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 3D Card Stack */
.hero-card-stack {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1000px;
}

.hero-3d-card {
  position: absolute;
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-3d-card:nth-child(1) {
  transform: translateZ(0px) rotateY(-10deg);
  z-index: 3;
}

.hero-3d-card:nth-child(2) {
  transform: translateZ(-100px) translateX(30px) rotateY(-5deg);
  z-index: 2;
  opacity: 0.8;
}

.hero-3d-card:nth-child(3) {
  transform: translateZ(-200px) translateX(60px) rotateY(0deg);
  z-index: 1;
  opacity: 0.6;
}

.hero-3d-card:hover {
  transform: translateZ(20px) rotateY(0deg) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px;
}

.card-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 20px;
}

.card-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.card-link:hover {
  gap: 10px;
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 10s infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 9s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 11s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 9s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 11s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; animation-duration: 8s; }
.particle:nth-child(10) { left: 95%; animation-delay: 9s; animation-duration: 10s; }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-mouse {
  width: 25px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: #ffd700;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-ultimate-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-left {
    order: 2;
  }
  
  .hero-right {
    order: 1;
  }
  
  .hero-card-stack {
    height: 400px;
  }
  
  .hero-ultimate-cta {
    justify-content: center;
  }
  
  .hero-stats-row {
    justify-content: center;
  }
  
  .hero-premium-badge {
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
  .hero-ultimate-container {
    padding: 0 20px;
  }
  
  .hero-ultimate-title {
    font-size: 36px;
  }
  
  .hero-ultimate-subtitle {
    font-size: 16px;
  }
  
  .hero-3d-card {
    max-width: 300px;
    padding: 20px;
  }
  
  .hero-3d-card:nth-child(2),
  .hero-3d-card:nth-child(3) {
    display: none;
  }
  
  .hero-ultimate-btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .hero-stat-item {
    flex: 1 1 40%;
    text-align: center;
  }
}