.elite-hero-section {
  display: flex;
  /* flex-wrap: wrap; */
  background-color: var(--primary-blue);
  width: 90%;
  margin: 2rem auto;
  gap: 2rem;
}

.elite-hero-image {
  flex: 1 1 50%;
  background: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=800&q=80') no-repeat center center;
  background-size: cover;
  min-height: 500px;
  position: relative;
}

.elite-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-headline {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.hero-headline h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.growth-chart-bars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}

.growth-bar {
  width: 20px;
  border-radius: 4px;
  background-color: white;
}

.growth-bar.bar-small { height: 40px; }
.growth-bar.bar-medium { height: 80px; }
.growth-bar.bar-large {
  height: 140px;
  background-color: var(--accent-green);
}

.goals-overview {
  flex: 1 1 50%;
  background: white;
  padding: 40px;
  border-radius: 0 20px 20px 0;
}

.goals-overview h2 {
  font-size: 32px;
  color: var(--highlight-blue);
  margin-bottom: 30px;
}

.goal-point {
  margin-bottom: 40px;
  padding-left: 35px;
  position: relative;
}

.goal-point::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: var(--accent-green);
  border-radius: 50%;
}

.goal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.goal-details {
  font-size: 16px;
  line-height: 1.5;
}

.goal-arabic {
  text-align: right;
  color: var(--muted-text);
  font-size: 14px;
  margin-top: 4px;
  font-style: italic;
}

@media (max-width: 768px) {
  .elite-hero-section {
    flex-direction: column;
  }

  .elite-hero-image {
    min-height: 300px;
  }

  .goals-overview {
    border-radius: 0;
  }
}