/* =====================================================
   GLOBAL BRANDING & UTILITIES
===================================================== */
.navbar {
  position: relative;
  z-index: 1050;
}
/* Text gradasi (dipakai lintas halaman) */
.text-gradient {
  background: linear-gradient(90deg, #007bff, #00aaff);
}

/* =====================================================
   HERO SECTION (HOMEPAGE / LANDING)
===================================================== */

.hero-user {
  background: linear-gradient(90deg, #ff9800, #ff7300);
  padding: 100px 20px;
  text-align: center;
  color: white;
}
/* Hero Section */
.hero {
  min-height: 100vh; /* agar tampil penuh di layar */
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding-top: 10px;
}

.hero-text h1 {
  font-weight: 700;
  font-size: 2.8rem;
  color: #1b2733;
}

.hero-text p {
  color: #6c757d;
  font-size: 1rem;
  margin-top: 15px;
  margin-bottom: 25px;
  max-width: 500px;
}

.hero-text .btn-primary {
  background-color: #00a651; /* hijau seperti di contoh */
  border: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
}

.hero-text .btn-primary:hover {
  background-color: #009345;
}

.hero img {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   INFORMASI / SECTION UMUM
===================================================== */

.hero-informasi {
  background-color: #ffffff;
}

/* =====================================================
   SECTION MOBILE APP / PROMO
===================================================== */

.sinanas-mobile {
  background: linear-gradient(90deg, #ff9800 0%, #ff7300 100%);
  color: #ffffff;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.sinanas-mobile h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.sinanas-mobile p {
  font-size: 1rem;
  color: #f4f4f4;
}

/* =====================================================
   MOBILE MOCKUP IMAGE
===================================================== */

.mockup-phone {
  height: 350px;
  max-width: 100%;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.second-phone {
  position: absolute;
  bottom: -10px;
  right: 60px;
  height: 320px;
  z-index: 1;
}

.mockup-phone:hover {
  transform: translateY(-5px);
}

/* =====================================================
   RESPONSIVE RULES (GLOBAL)
===================================================== */

/* Desktop */
@media (min-width: 992px) {
  .hero-informasi {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

/* Tablet & Mobile */
@media (max-width: 992px) {
  .sinanas-mobile {
    text-align: center;
  }

  .second-phone {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: -30px;
    height: 280px;
  }
}

.hero-tengah {
  background: linear-gradient(90deg, #ff9800, #ff7300);
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.table {
  border-collapse: separate;
  border-spacing: 0 12px;
}

.table thead th {
  font-size: 13px;
  font-weight: 600;
  color: #6c757d;
  border-bottom: 1px solid #dee2e6;
}

.table tbody tr {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.table tbody td {
  padding: 14px 16px;
  border-top: none;
}

.table tbody tr:hover {
  background-color: #f8f9fa;
}

/* HEADER */
.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.table-header h6 {
  margin: 0;
  font-weight: 700;
}

/* BUTTON */
.btn-sop {
  border: 1px solid #4f46e5;
  color: #4f46e5;
  background: transparent;
  font-size: 13px;
}

.btn-sop:hover {
  background: #4f46e5;
  color: #fff;
}
