/* =====================================================
   HERO FULL PAGE – FIX POSISI KONTEN
   ===================================================== */

#hero,
#hero .carousel-item {
    height: 80vh !important;
    min-height: 80vh;
}

/* container full height TANPA padding aneh */
#hero .carousel-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;        /* center vertikal */
    justify-content: flex-end !important;  /* ke kanan */
    padding: 0 6%;
    padding-right: 6%;
}

/* turunkan konten DENGAN TRANSFORM (AMAN) */
#hero .slider-content {
    /* max-width: 520px; */
    /* ⬅️ INI KUNCINYA */
    transform: translate(280px, 150px); 
    color: #fff; 
     max-width: 520px;
    margin-left: auto;   /* ⬅️ KUNCI: dorong ke kanan */
    text-align: left;
    /* transform: translate(120px, 120px);  */
}

/* typography tetap */
#hero .slider-title,
#hero h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

#hero .slider-details,
#hero p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    width: 60%;
}

/* =====================================================
   FOOTER APP STORE BUTTONS
   ===================================================== */

.footer-newsletter .app-store-buttons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.footer-newsletter .store-btn img {
    height: 42px;
    width: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-newsletter .store-btn:hover img {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 576px) {
    .footer-newsletter .app-store-buttons {
        justify-content: center;
    }
}


@media (max-width: 768px) {
  #hero .carousel-container {
    justify-content: center;
    padding: 0 20px;
  }

  #hero .slider-content {
    /* transform: translateY(0);
    text-align: center;
    max-width: 100%; */
    margin-left: 0;
    transform: translate(0, 0);
    text-align: center;
  }

  #hero h2 {
    font-size: 30px;
  }
}
