.hero-section-premium {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
}

.hero-content-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 282px;
  background: linear-gradient(to top, #000, transparent);
  /* background: url("/static/images/hero_section_bottom_border.webp");
  background-size: cover; */
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.hero-content-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 170px;
  /* background: linear-gradient(to bottom, #000, transparent); */
  background: url("/static/images/hero_section_top_border.webp");
  background-size: cover;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-Glida-Display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
  text-align: center;
  z-index: 1;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 30px;
  z-index: 1;
}

.hero-action-btn {
  display: inline-block;
  z-index: 1;
}

.btn-enroll-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 12px;
  background: linear-gradient(101.58deg,
      rgba(99, 99, 99, 0.4) 0.97%,
      rgba(155, 155, 155, 0.4) 20.97%,
      rgba(177, 177, 177, 0.4) 37.13%,
      rgba(225, 225, 225, 0.4) 50.61%,
      rgba(177, 177, 177, 0.4) 62.82%,
      rgba(155, 155, 155, 0.4) 76.44%,
      rgba(99, 99, 99, 0.4) 100.96%);
  color: rgba(255, 255, 255, 1) !important;
  font-family: var(--font-Montserrat);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-enroll-premium::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  transition: all 0.75s ease;
}

.btn-enroll-premium:hover::after {
  left: 130%;
}

.btn-enroll-premium:hover {
  color: white !important;
}

.btn-enroll-premium:active {
  transform: translateY(-1px) scale(1);
}

.btn-enroll-premium:hover .arrow-icon {
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1280px) {
  .hero-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .btn-enroll-premium {
    gap: 8px;
    padding: 8px 20px;
    font-size: 16px;
  }

  .hero-content-wrapper::after {
    height: 131px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: 50px;
  }

  .hero-title {
    font-size: 26px;
    margin-bottom: 7px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
    padding: 0 10px;
  }

  .btn-enroll-premium {
    padding: 12px 28px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .btn-enroll-premium {
    padding: 8px 16px;
    font-size: 15px;
  }
  .hero-content-wrapper::before {
    height: 80px;
  }
}