/* Modern Hero Section Styling
-------------------------------------------------- */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 153, 255, 0.5) 100%);
  z-index: -1;
}

.hero-content {
  width: 100%;
  padding: 0 15px;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-title span {
  color: var(--warning);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--warning);
  border-radius: 4px;
  opacity: 0.5;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;
}

.hero-btn {
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  transition: var(--transition-base);
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.hero-btn-primary {
  background-color: var(--white);
  color: var(--primary);
  border: none;
}

.hero-btn-primary:hover {
  background-color: var(--light);
  color: var(--primary-dark);
}

.hero-btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Hero Stats Card */
.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.2s;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stats-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stats-text {
  flex-grow: 1;
}

.stats-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.stats-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.fade-in-up-delay-1 {
  animation-delay: 0.3s;
}

.fade-in-up-delay-2 {
  animation-delay: 0.6s;
}

.fade-in-up-delay-3 {
  animation-delay: 0.9s;
}

.fade-in-up-delay-4 {
  animation-delay: 1.2s;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 80px;
  }

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

  .hero-stats {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .stats-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
}
