:root {
  --primary: #0f172a;
  --accent: #1fbfb8;
  --soft: #f1f5f9;
}
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
/* =============================
       MOBILE FIRST BASE STYLE
       ============================= */

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--soft);
  color: #1e293b;
}
.hero-section {
  background: linear-gradient(135deg, var(--primary), #020617);
  color: #fff;
  padding: 4rem 0;
  border-radius: 0 0 2rem 2rem;
}
.hero-icon {
  height: 3rem;
}
.hero-image {
  display: none;
}
.hero-image-mobile {
  display: none;
}
.hero .lead {
  font-size: 1rem;
}
.hero .badge {
  font-size: 0.85rem;
}
.hero-badge-group {
  justify-content: center;
}
.hero-badge-group .col-12 {
  max-width: 75% !important;
  margin-left: auto;
  margin-right: auto;
}
.feature-section {
  padding: 5rem 0;
}
.feature-card {
  border: none;
  border-radius: 1.2rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.feature-card-title {
  margin-bottom: 1rem;
}
.about-section {
  padding: 5rem 0;
  background-color: white;
}
.about-container {
  text-align: center;
}
.about-title {
  margin-bottom: 1rem;
}
.about-image-1 {
  display: none;
}
.about-image-2 {
  width: 75%;
}
.about-list {
  padding: 0 3rem;
  display: flex;
  flex-flow: column;
  justify-content: center !important;
}
.about-list-item {
  list-style: none;
  background-color: whitesmoke;
  margin-bottom: 0.5rem;
  padding: 1rem 0;
  border-radius: 2rem !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cta-section {
  padding: 5rem 0;
  background: rgb(32, 54, 105);
  color: var(--soft);
  text-align: center;
  background-image: url("/core/assets/images/pat_04.png");
}
.cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
}
.cta-caption {
  color: var(--soft);
}
.cta-button {
  background: var(--accent);
  color: #fff;
  border-radius: 2rem;
  margin-top: 2rem;
  padding: 1rem 3rem;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}
.cta-button:hover {
  background-color: orange;
  transform: translateY(-5px) !important;
}
footer {
  background: #020617;
  color: #94a3b8;
  padding: 30px 0;
  font-size: 0.9rem;
}
footer a {
  text-decoration: none;
  transition: all ease 0.3s;
  color: orange
}
footer a:hover {
  color: var(--accent);
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #ff9800;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;

  /* kondisi awal (tersembunyi di bawah) */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* saat muncul */
.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* hover tetap interaktif */
.scroll-top:hover {
  background: #ffb74d;
  transform: translateY(-5px);
}

/* =============================
       TABLET (>=768px)
       ============================= */
@media (min-width: 768px) {
  .hero-container {
    align-items: end;
  }
  .hero-icon {
    height: 5rem;
    margin-bottom: 1rem;
  }
  .hero-badge-group {
    justify-content: start !important;
    margin-bottom: 1rem;
  }
  .hero-badge-group .col-12 {
    max-width: 100% !important;
    margin-left: 0;
  }
  .hero-image-mobile {
    display: inline-block;
    max-width: 100%;
  }
  .about-container {
    text-align: center;
  }
  .about-list {
    padding: 0;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 20px;
  }
  .about-list-item {
    padding: 1rem 2rem;
    width: calc(50% - 10px);
  }
  .about-right {
    margin-bottom: 2rem;
  }
}

/* =============================
       DESKTOP (>=992px )
       ============================= */
@media (min-width: 992px) {
  .hero-left {
    padding-right: 3rem;
  }
  .hero-image {
    display: inline-block;
    width: 100%;
  }
  .hero-image-mobile {
    display: none;
  }
  .about-container {
    text-align: left;
    align-items: flex-end;
  }
  .about-right {
    padding-top: 2rem !important;
    text-align: end;
    margin-bottom: 0;
  }
  .about-image-1 {
    display: inline-block;
    width: 75%;
  }
  .about-image-2 {
    display: none;
    margin-top: 2rem;
  }
  .about-list {
    padding: 0;
    display: inline-block;
    padding-left: 2rem;
  }
  .about-list-item {
    margin-left: 1rem !important;
    list-style: circle;
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 0rem;
    padding: 0px;
    margin: 0 !important;
    border-radius: 0rem !important;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.12);
    width: 100%;
  }
}
