body {
  background-color: #eaf6ff;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== HEADER ===== */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(to right, #f0f8ff, #ffffff);
}
.logo-wrapper img {
  height: 60px;
  margin-right: 20px;
}
.nav-bar-custom {
  background-color: #0166ff;
  padding: 10px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.nav-bar-custom a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}
.nav-bar-custom a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.nav-bar-custom a.btn-daftar {
  border: 1px solid white;
  border-radius: 20px;
  padding: 6px 16px;
}
.nav-bar-custom a.btn-daftar:hover {
  background-color: white;
  color: #5c6bc0;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* ===== MAIN SECTION ===== */
.section-title h1 {
  font-weight: 700;
  font-size: 2.5rem;
}
.section-title span {
  color: #3939ef;
  font-weight: 800;
}
.card-layanan {
  border: 2px solid #cfd8ff;
  border-radius: 16px;
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
  background: white;
}
.card-layanan:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
.card-layanan img {
  height: 100px;
  margin-bottom: 10px;
}
.card-layanan .judul {
  background: #5c6bc0;
  color: white;
  padding: 6px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-pengaduan {
  border: none;
  border-radius: 16px;
  background: white;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.btn-pengaduan:hover {
  transform: scale(1.03);
}

/* Alur section */
.alur-wrapper {
  background-color: #0166ff;
  color: white;
  padding: 80px 20px 60px;
  position: relative;
}
.alur-line {
  position: absolute;
  top: 100px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: white;
  opacity: 0.3;
  z-index: 0;
}
.alur-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 1;
  padding: 0 10%;
}
.alur-step {
  text-align: center;
  flex: 1;
  position: relative;
}
.alur-step img {
  background-color: white;
  padding: 12px;
  border-radius: 16px;
  width: 50px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.alur-step h6 {
  font-weight: bold;
  margin-top: 5px;
}
.btn-outline-light {
  border-radius: 30px;
  padding: 6px 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .alur-container {
    flex-direction: column;
    align-items: center;
  }
  .alur-line {
    display: none;
  }
}

/* Floating Contact */
.floating-contact,
.contact-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  text-align: center;
  transition: transform 0.3s ease;
}
.floating-contact:hover {
  transform: translateY(-5px);
}
.floating-contact .circle-btn {
  background-color: #5c6bc0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.floating-contact .circle-btn img {
  width: 28px;
  height: 28px;
}
.floating-contact .label-btn {
  margin-top: 5px;
  background-color: #5c6bc0;
  color: white;
  font-weight: bold;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.contact-fab .fab-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.contact-fab .fab-options a {
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0,0,0);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.contact-fab .fab-options a:hover {
  transform: scale(1.1);
}
.contact-fab .fab-main {
  background-color: #17d1ff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
}
.contact-fab .label {
  background-color: #17d1ff;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: bold;
  margin-top: 5px;
  font-size: 0.9rem;
}
.contact-fab .fab-options.show a {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.contact-fab .fab-options.show a:nth-child(1) {
  transition-delay: 0.1s;
}
.contact-fab .fab-options.show a:nth-child(2) {
  transition-delay: 0.2s;
}
.contact-fab .fab-options.show a:nth-child(3) {
  transition-delay: 0.3s;
}
