body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fb;
}

/* NAVBAR */
/* NAVBAR CLEAN */
.navbar {
  background: #ffffff;
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

/* BRAND */
.navbar-brand {
  color: #0d6efd !important;
  font-weight: 700;
  font-size: 1.3rem;
}

/* NAV LINK */
.nav-custom {
  position: relative;
  font-weight: 500;
  color: #555 !important;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT (BUBBLE) */
.nav-custom:hover {
  background: #f1f5ff;
  color: #0d6efd !important;
}

/* ACTIVE MENU */
.nav-custom.active {
  background: #0d6efd;
  color: #fff !important;
}

/* AUTH BUTTON */
.btn-auth {
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
  color: white;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

/* AUTH BUTTON MENYATU DENGAN NAVBAR */
.btn-auth {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* HOVER */
.btn-auth:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ICON */
.btn-auth i {
  transition: 0.3s;
}

.btn-auth:hover i {
  transform: scale(1.1);
}

/* NAVBAR SCROLL EFFECT */
.navbar.scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}




/* HERO */
.hero {
  background: linear-gradient(135deg, #0d6efd, #6ea8fe);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  opacity: 0.9;
}

/* BUTTON */
.btn-custom {
  background: white;
  color: #0d6efd;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #e9f2ff;
  transform: scale(1.05);
}

/* CARD LAYANAN PREMIUM V2 */
.card-layanan {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.card-layanan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(13,110,253,0.1), transparent);
  opacity: 0;
  transition: 0.4s;
}

.card-layanan:hover::before {
  opacity: 1;
}

.card-layanan:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ICON */
.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d6efd, #6ea8fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: white;
  box-shadow: 0 10px 25px rgba(13,110,253,0.4);
}

.icon-circle i {
  font-size: 24px;
}

/* BADGE */
.badge-jenis {
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

/* PRICE */
.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

/* BUTTON HIDDEN */
.btn-order {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.card-layanan:hover .btn-order {
  opacity: 1;
  transform: translateY(0);
}

/* BEST TAG */
.best {
  position: absolute;
  top: 15px;
  right: -40px;
  background: #ffc107;
  color: #000;
  font-size: 12px;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: bold;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero {
    padding: 20px 10px;
  }
  .hero h1{
    font-size: 2rem;
  }
}


.navbar-toggler:focus {
  box-shadow: none;
}

/* hover efek */
.navbar-toggler i {
  transition: 0.3s;
}

.navbar-toggler:hover i {
  transform: rotate(90deg);
}


/* CARD KEUNGGULAN */
.fitur-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

/* ICON */
.fitur-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0d6efd, #6ea8fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(13,110,253,0.3);
}

/* HOVER EFFECT */
.fitur-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ICON ANIMASI */
.fitur-card:hover .fitur-icon {
  transform: rotate(10deg) scale(1.1);
  transition: 0.3s;
}





/* STEP CARD */
.step-card {
  position: relative;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

/* NOMOR */
.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d6efd;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.step-icon {
  width: 70px;
  height: 70px;
  background: #e9f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;
  color: #0d6efd;
  transition: 0.3s;
}

/* HOVER */
.step-card:hover .step-icon {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.1);
}

/* CARD HOVER */
.step-card:hover {
  transform: translateY(-8px);
}


/* GARIS PENGHUBUNG */
@media(min-width:768px){
  .step-card::after {
    content: "";
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #dee2e6;
    z-index: -1;
  }

  .col-md-4:last-child .step-card::after {
    display: none;
  }
}



/* FAQ CARD */
.faq-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
  border: none;
}

/* BUTTON */
.accordion-button {
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 15px !important;
  box-shadow: none;
}

/* ACTIVE */
.accordion-button:not(.collapsed) {
  background: #0d6efd;
  color: #fff;
}

/* BODY */
.accordion-body {
  background: #fff;
  border-top: 1px solid #eee;
  color: #6c757d;
}

/* HOVER */
.accordion-button:hover {
  background: #e9f2ff;
  color: blue;
}




/* CARD */
.testi-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
}

/* ICON QUOTE */
.testi-icon {
  font-size: 30px;
  color: #0d6efd;
  opacity: 0.2;
}

/* TEXT */
.testi-text {
  font-size: 14px;
  color: #6c757d;
  margin-top: 10px;
}

/* AVATAR */
.testi-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0d6efd, #6ea8fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

/* HOVER */
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}



/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
}

/* LINK */
.footer-link li {
  margin-bottom: 8px;
}

.footer-link a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-link a:hover {
  color: #fff;
  padding-left: 5px;
}

/* SOSMED */
.sosmed {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.sosmed:hover {
  background: #fff;
  color: #0d6efd;
  transform: translateY(-3px);
}