/* Hero Section */
.hero-container {
  background-color: #d2e9e9;
  border-radius: 40px;
  display: flex;
  padding: 60px 80px 0 80px;
  position: relative;
  overflow: visible;
  margin-top: 20px;
  min-height: 500px;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.badge {
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 55px;
  color: #0b5b67;
  line-height: 1.1;
  margin-bottom: 40px;
}

.hero-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-explore {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatars img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}

.user-avatars img:first-child {
  margin-left: 0;
}

.stars span {
  color: #333;
  font-size: 18px;
}
.stars p {
  font-size: 12px;
  color: #666;
}

/* Visual Side */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.main-img {
  max-width: 100%;
  z-index: 1;
}

.stats-card {
  position: absolute;
  left: 0;
  bottom: 110px;
  background: white;
  padding: 15px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 3;
}

.stats-icon {
  background: #e0f2f2;
  padding: 10px;
  border-radius: 10px;
}

.stats-icon i {
  color: #0b5b67;
  font-size: 24px;
}

.orange-icon-box {
  position: absolute;
  right: 0;
  top: 50%;
  background: #ff6b35;
  padding: 15px;
  border-radius: 12px;
  z-index: 3;
}

.orange-icon-box i {
  color: white;
  font-size: 24px;
}

/* Play Button Circle */
.play-button-circle {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background: #0b5b67;
  border-radius: 50%;
  border: 10px solid white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  z-index: 5;
}

.play-button-circle p {
  font-size: 14px;
}

.inner-circle {
  font-size: 24px;
}

.inner-circle i {
  font-size: 36px;
}

/* ===============================
   HERO RESPONSIVE
================================ */

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
  .hero-container {
    padding: 50px 40px 0 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .stats-card {
    bottom: 80px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px 80px;
    border-radius: 25px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    justify-content: center;
    margin-top: 30px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .hero-action {
    justify-content: center;
  }

  .btn-explore {
    padding: 14px 26px;
  }

  /* floating cards adjust */
  .stats-card {
    position: absolute;
    left: 0%;
    bottom: 40px;
  }

  .orange-icon-box {
    right: 20px;
    top: 20%;
  }

  /* play button resize */
  .play-button-circle {
    width: 110px;
    height: 110px;
    bottom: -40px;
  }

  .inner-circle i {
    font-size: 28px;
  }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {
  .hero-container {
    padding: 30px 18px 70px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .badge {
    font-size: 12px;
  }

  .stats-card {
    padding: 10px 15px;
    gap: 10px;
  }

  .stats-icon i {
    font-size: 18px;
  }

  .play-button-circle {
    width: 80px;
    height: 80px;
  }

  .play-button-circle p {
    display: none;
  }
}
