/* =========================
   BREAKPOINTS
========================= */
/* Mobile */
/* Tablet */
/* Desktop */
/* Container utama - height 30rem */
.container-hero {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  height: 30rem;
}
@media (max-width: 1440px) {
  .container-hero {
    height: 25rem;
  }
}
@media (max-width: 1280px) {
  .container-hero {
    height: 19rem;
  }
}
@media (max-width: 564px) {
  .container-hero {
    height: 15rem;
  }
}
@media (max-width: 480px) {
  .container-hero {
    height: 12rem;
  }
}

/* ========== HERO MAIN ========== */
.hero-main {
  width: 75%;
  position: relative;
  background: #0a0f1c;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(30, 169, 226, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 35px 55px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(30, 169, 226, 0.3);
}

.slider-main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f172a;
  cursor: grab;
}

.slider-main:active {
  cursor: grabbing;
}

.slides-main {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1);
  will-change: transform;
}

.slide-main-item {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.slide-main-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  pointer-events: none;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: none;
  color: #1e293b;
  font-size: 32px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  font-family: monospace;
  line-height: 1;
}
@media (max-width: 564px) {
  .nav-btn {
    display: none;
  }
}

.nav-btn:hover {
  background: #1ea9e2;
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 22px rgba(30, 169, 226, 0.4);
}

.nav-left {
  left: 20px;
}

.nav-right {
  right: 20px;
}

/* ========== HERO SIDE ========== */
.hero-side {
  width: 25%;
  position: relative;
  background: #0f172a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 45px -18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(30, 169, 226, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.hero-side:hover {
  transform: translateY(-3px);
  box-shadow: 0 35px 50px -18px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(30, 169, 226, 0.28);
}

.slider-side {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0f1c;
  cursor: grab;
}

.slider-side:active {
  cursor: grabbing;
}

.slides-side {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.4, 1);
  will-change: transform;
}

.slide-side-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.slide-side-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
}

/* Indikator kecil di hero-side */
.side-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 25;
  padding: 7px 16px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  width: auto;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.side-dot {
  width: 9px;
  height: 9px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.side-dot.active {
  background-color: #1ea9e2;
  width: 26px;
  border-radius: 20px;
  background: #1ea9e2;
  box-shadow: 0 0 10px rgba(30, 169, 226, 0.7);
}

.side-dot:hover {
  background-color: #1ea9e2;
  transform: scale(1.2);
}

.slide-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 40px;
  color: white;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  pointer-events: none;
  z-index: 10;
  font-family: "Inter", sans-serif;
  border-left: 3px solid #1ea9e2;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  .hero-main {
    width: 100%;
    border-radius: 20px;
  }
  .hero-side {
    display: none;
  }
  .slide-label {
    font-size: 0.75rem;
    padding: 6px 14px;
    bottom: 16px;
    left: 16px;
  }
}
@media (max-width: 768px) {
  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
  .slide-label {
    font-size: 0.7rem;
    padding: 5px 12px;
    bottom: 14px;
    left: 14px;
  }
}
@media (max-width: 564px) {
  .nav-btn {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
  .nav-left {
    left: 10px;
  }
  .nav-right {
    right: 10px;
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container-hero {
  animation: fadeSlideUp 0.5s ease-out;
}/*# sourceMappingURL=hero.css.map */