/* Hero Section Styles */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding-top: 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/373543/pexels-photo-373543.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-3);
  color: var(--white);
}

.hero-text {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: var(--space-4);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.hero-stats {
  display: flex;
  gap: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-top: 0.25rem;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  position: relative;
  z-index: 1;
}

/* Shape Divider */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-divider .shape-fill {
  fill: var(--white);
}

/* Hero Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-image {
  animation: float 6s ease-in-out infinite;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: var(--space-5);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  
  .stat {
    flex: 1;
    min-width: 120px;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}
