/* Hero Section Styles */

.section.hero {
  background: var(--color-darker) !important;
  color: var(--color-light);
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
}

/* Background Effects */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 40%, rgba(255, 107, 53, 0.02) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(139, 92, 246, 0.02) 50%, transparent 60%),
    linear-gradient(90deg, transparent 30%, rgba(255, 215, 0, 0.01) 50%, transparent 70%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

/* Hero Container */
.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

/* Hero Content */
.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--color-light);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: slideInLeft var(--animation-duration-slow) ease-out;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: 3.5rem;
  color: var(--color-light);
  letter-spacing: 2px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  animation: slideInUp 1s ease-out 0.4s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  animation: slideInUp 1s ease-out 0.6s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  position: relative;
  z-index: 10;
}

.hero-logo {
  max-width: 450px;
  max-height: 450px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
}

/* Floating Cards in Hero */
.hero .floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-light);
}

.hero .card-1 {
  top: 20px;
  right: 0;
  width: 160px;
  animation-delay: 0s;
}

.hero .card-2 {
  top: 150px;
  left: 20px;
  width: 180px;
  animation-delay: -2s;
}

.hero .card-3 {
  bottom: 20px;
  right: 40px;
  width: 160px;
  animation-delay: -4s;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.card-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 250px;
    order: -1;
  }

  .hero-logo {
    max-width: 280px;
    max-height: 280px;
  }
  
  .hero .floating-card {
    display: none;
  }
}