/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* === GRID SYSTEM === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  padding: clamp(20px, 5vw, 50px) 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  overflow-x: hidden;
}

.col {
  padding: 10px;
  box-sizing: border-box;
  min-width: 0;
}

.col-1 {
  flex: 0 0 calc(100% / 12);
}

.col-2 {
  flex: 0 0 calc(100% / 6);
}

.col-3 {
  flex: 0 0 calc(100% / 4);
}

.col-4 {
  flex: 0 0 calc(100% / 3);
}

.col-5 {
  flex: 0 0 calc(100% * 5 / 12);
}

.col-6 {
  flex: 0 0 50%;
}

.col-7 {
  flex: 0 0 calc(100% * 7 / 12);
}

.col-8 {
  flex: 0 0 calc(100% * 8 / 12);
}

.col-9 {
  flex: 0 0 75%;
}

.col-10 {
  flex: 0 0 calc(100% * 10 / 12);
}

.col-11 {
  flex: 0 0 calc(100% * 11 / 12);
}

.col-12 {
  flex: 0 0 100%;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {

  .col,
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    flex: 0 0 100% !important;
  }

  .hide-sm {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .col-md-6 {
    flex: 0 0 50%;
  }

  .col-md-12 {
    flex: 0 0 100%;
  }

  .hide-md {
    display: none !important;
  }
}

/* === UTILITIES === */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

/* === DEMO STYLES === */
.box {
  /* background: #eee;
  border: 1px solid #ccc; */
  padding: 1rem;
  text-align: center;
}

.box:hover {
  border-radius: 10px;
  transform: translateY(-5px);

}


/* === TYPOGRAPHY === */
.h1 {
  font-size: 54px;
  line-height: 58px;
  font-weight: 600;
}

.h2 {
  font-size: 40px;
  line-height: 42px;
  font-weight: 500;
}

.body {
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
}

.caption {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.label {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .h3-mobile {
    font-size: 35px;
    line-height: 39px;
    font-weight: 500;
  }
}


/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background-color: #00b300;
  color: white;
  border: none;
  box-shadow: 0 3px #0a0;
}

.btn-outline {
  background-color: transparent;
  color: #00b300;
  border: 2px solid #00b300;
}

.btn-primary:hover,
.btn-outline:hover {
  opacity: 0.85;
}

.btn-digital {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* Jarak antara icon dan teks */
  padding: 10px 16px;
  background-color: #00b300;
  /* Bootstrap primary color */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-digital img {
  width: 24px;
  height: 24px;
}

.btn-digital:hover {
  background-color: #005500;
}

strong {
  color: #00b300;
}

.img-rounded {
  border-radius: 20px;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  background-color: rgb(232, 232, 232);
  font-family: "Poppins", sans-serif;
}

/* === GRID SYSTEM === */

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  overflow-x: hidden;
}

.col-6 {
  flex: 0 0 50%;
  padding: 10px;

  min-width: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .col-6 {
    flex: 0 0 100% !important;
  }
}

@media (max-width: 992px) {
  .col-md-6 {
    flex: 0 0 50%;
  }
}

/* === TYPOGRAPHY === */
.h2 {
  font-size: 40px;
  line-height: 42px;
  font-weight: 500;
}

.body {
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
}

strong {
  color: #00b300;
}

/* === CARD STYLES === */




.img-rounded {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

/* === STAGGERED ANIMATION === */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays untuk setiap card */
.slide-up:nth-child(1) {
  transition-delay: 0ms;
}

.slide-up:nth-child(2) {
  transition-delay: 200ms;
}

.slide-up:nth-child(3) {
  transition-delay: 400ms;
}

.slide-up:nth-child(4) {
  transition-delay: 600ms;
}

.slide-up:nth-child(5) {
  transition-delay: 800ms;
}

.slide-up:nth-child(6) {
  transition-delay: 1000ms;
}

/* Untuk section reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}