.hero-section {
  position: relative;
  background: linear-gradient(
    132.69deg,
    #bfe6ec 3.54%,
    #ddf8ff 13.55%,
    #ffffff 75.05%
  );
  min-height: 700px;
  overflow: hidden;
  display: flex;
  padding-bottom: 36px;
}

/* Welcome Badge */
.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.welcome-badge .icon {
  width: 24px;
  height: 24px;
  background: #39b8ad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.welcome-badge span {
  font-size: 16px;
  font-weight: 500;
  color: #373737;
}

/* Hero Content */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #2a2a2a;
  margin-bottom: 25px;
  max-width: 650px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #474747;
  margin-bottom: 40px;
  max-width: 550px;
}

/* Search Bar */
.hero-search {
  background: #ffffff;
  border-radius: 50px;
  padding: 10px 10px 10px 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin-bottom: 60px;
}

.hero-search input {
  border: none;
  outline: none;
  flex-grow: 1;
  font-size: 16px;
  color: #696969;
}

.btn-search {
  background: #52dbc0;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: #39b8ad;
  transform: translateY(-2px);
}

.decor-circle {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 25px;
  left: -750px;
  z-index: 0;
}

.decor-cross {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 70px;
  left: -80px;
  z-index: 0;
}

.decor-wave {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 30px;
  left: 150px;
  z-index: 3;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 50px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-icon img {
  width: 45px;
}

.stat-info .count {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #484848;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-info .label {
  font-size: 14px;
  color: #4b4b4b;
  line-height: 1.4;
}

/* Hero Image & Cards */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 700px; /* Chiều cao khớp với hero-section */
}

.hero-main-img {
  position: absolute;
  top: 0;
  right: -130px; /* Vị trí ảnh người */
  width: auto;
  height: 700px;
  object-fit: cover;
  border-radius: 0 0 0 150px;
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: -137px; /* Lệch 7px về bên phải so với ảnh chính theo Figma */
  width: auto;
  height: 705px;
  z-index: 1;
}

.floating-card {
  position: absolute;
  top: 60px;
  left: 0px;
  background: #ffffff;
  border-radius: 15px;
  padding: 15px 40px 15px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.floating-card .card-icon {
  width: 56px;
  height: 56px;
  background: #39b8ad;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card .count {
  font-size: 20px;
  font-weight: 700;
  color: #2b2b2b;
  display: block;
}

.floating-card .label {
  font-size: 16px;
  color: #2b2b2b;
}

/* Decorations */
.hero-decor {
  position: absolute;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .decor-circle,
  .decor-cross,
  .decor-wave {
    display: none;
  }

  .hero-image-wrapper {
    position: absolute;
    top: 0;
    right: -50px;
    width: auto;
    object-fit: cover;
    border-radius: 0 0 0 150px;
    z-index: 2;
  }

  .hero-bg-img {
    height: 500px;
  }

  .floating-card {
    position: absolute;
    top: 500px;
    left: -600px;
    background: #ffffff;
    border-radius: 15px;
    padding: 10px 15px 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }

  .welcome-badge {
    margin-top: 80px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 32px !important;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 14px !important;
    margin-bottom: 20px;
  }

  .hero-search {
    padding: 10px 10px 10px 30px;
    margin-bottom: 20px;
  }

  .hero-search input {
    font-size: 12px;
  }

  .btn-search {
    padding: 10px 25px;
    font-size: 14px;
  }

  .hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .hero-section {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

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

@media (max-width: 1200px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    min-height: auto;
  }
  .hero-title,
  .hero-subtitle,
  .hero-search {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
    text-align: left;
    margin-bottom: 40px;
  }
  .hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 426px) {
  .welcome-badge span {
    font-size: 14px;
  }

  .hero-title {
    font-size: 26px !important;
  }

  .hero-subtitle {
    font-size: 13px !important;
  }

  .hero-search {
    flex-direction: column;
    padding: 15px;
    border-radius: 24px;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-search input {
    font-size: 14px;
    width: 100%;
    text-align: center;
    padding: 5px 0;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .stat-info .count {
    font-size: 24px;
  }

  .stat-info .label {
    font-size: 12px;
  }
}
