.af-hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.af-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 65, 38, 0.88) 0%,
    rgba(2, 65, 38, 0.55) 45%,
    rgba(2, 65, 38, 0.20) 100%
  );
  z-index: 1;
}

.af-hero-container {
  position: relative;
  z-index: 2;
}

.af-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  padding: var(--spacing-2xl) 0;
}

.af-hero-badge {
  background-color: var(--secondary-color);
  color: var(--primary-color-dark);
  border: none;
  font-size: 0.875rem;
  padding: 0.35rem 1rem;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.af-hero-title {
  color: var(--surface-color);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.af-hero-subtitle {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: var(--spacing-md);
}

.af-hero-text {
  color: #E5E7EB;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  letter-spacing: 0.02em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up-1 { animation: fadeInUp 0.7s ease-out forwards 0.1s; opacity: 0; }
.fade-in-up-2 { animation: fadeInUp 0.7s ease-out forwards 0.3s; opacity: 0; }
.fade-in-up-3 { animation: fadeInUp 0.7s ease-out forwards 0.5s; opacity: 0; }
.fade-in-up-4 { animation: fadeInUp 0.7s ease-out forwards 0.7s; opacity: 0; }
.fade-in-up-5 { animation: fadeInUp 0.7s ease-out forwards 0.9s; opacity: 0; }

@media (min-width: 768px) {
  .af-hero-title {
    font-size: 3.5rem;
  }

  .af-hero-subtitle {
    font-size: 1.75rem;
  }

  .af-hero-text {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .af-hero-title {
    font-size: 4.5rem;
  }

  .af-hero-section {
    min-height: 85vh;
  }
}