/* HERO SECTION */
.hero {
  padding: 80px 0;
  background: linear-gradient(180deg, #020617, #0a1a3a);
}

/* HERO PREMIUM */
.hero {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at top, #0f172a, #020617);
  overflow: hidden;
}

/* EFFECT BACKGROUND GLOW */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: #3b82f6;
  filter: blur(180px);
  opacity: 0.25;
  top: -100px;
  left: -100px;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #38bdf8;
  filter: blur(150px);
  opacity: 0.2;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

/* CONTAINER */
.hero-container {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* TEXT */
.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(90deg, #e0f2fe, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h2 {
  font-size: 22px;
  color: #7dd3fc;
  margin: 15px 0;
}

.hero-content p {
  color: #cbd5f5;
  line-height: 1.7;
  max-width: 500px;
}

/* CTA PREMIUM */
.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* DAFTAR (PRIMARY) */
.btn.daftar {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  color: white;
  box-shadow: 0 0 20px rgba(56,189,248,0.5);
}

.btn.daftar:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56,189,248,0.8);
}

/* LOGIN (SECONDARY) */
.btn.login {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  backdrop-filter: blur(10px);
}

.btn.login:hover {
  background: #38bdf8;
  color: #020617;
}

/* IMAGE */
.hero-image {
  position: relative;
}

.hero-image img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 25px rgba(56,189,248,0.4));
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* GLASS BOX (OPTIONAL FITUR ICON) */
.hero-features {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(56,189,248,0.2);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 10px;
  color: #cbd5f5;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero {
    padding: 70px 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content h2 {
    font-size: 18px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    margin-top: 30px;
  }
}