.hero-section{
  padding: 60px 20px;
  background: #fff;
}

.hero-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* النص */
.hero-text{
  flex: 1;
}

.badge{
  color: #00a88f;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-right: 15px;
}

.badge::before{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #00a88f;
  transform: translateY(-50%);
}

.hero-text h1{
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.4;
}

.hero-text p{
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 500px;
}

/* الزر */
.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00a88f;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover{
  background: #008f79;
  transform: translateY(-2px);
}

/* الصورة */
.hero-image{
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img{
  max-width: 100%;
  border-radius: 20px;
}

/* موبايل */
@media (max-width: 768px){
  .hero-container{
    flex-direction: column;
    text-align: center;
  }

  .hero-text p{
    margin: auto;
  }
}