* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6fdfd;
  padding-bottom: 70px;
}

/* Modern Header */
.modern-header {
  position: relative;
  background-color: #009688;
  padding: 18px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-name {
  font-size: 18px;
  font-weight: bold;
  color: white;
}
.search-icon {
  position: absolute;
  right: 20px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.menu-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
}


.service {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service:hover {
  transform: translateY(-2px);
}

.service i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 6px;
  border-radius: 50%;
  background-color: #eee;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service span {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

a.service {
    text-decoration: none;
}


/* Warna Pastel Ikon */
.icon-purple {
  background-color: #eae6ff !important;
  color: #725ac1 !important;
}

.icon-orange {
  background-color: #fff4e6 !important;
  color: #f2994a !important;
}

.icon-green {
  background-color: #e6f9f0 !important;
  color: #27ae60 !important;
}

.icon-red {
  background-color: #ffe6e6 !important;
  color: #eb5757 !important;
}

.icon-yellow {
  background-color: #fff9e6 !important;
  color: #f2c94c !important;
}

.icon-teal {
  background-color: #e0f7f5 !important;
  color: #00bfa5 !important;
}

.icon-blue {
  background-color: #e6f0ff !important;
  color: #2f80ed !important;
}

.icon-pink {
  background-color: #fde9f3 !important;
  color: #eb2f96 !important;
}

/* Responsif: Maks 3 kolom saat layar sempit */
@media (max-width: 420px) {
  .menu-services {
    grid-template-columns: repeat(3, 1fr);
  }
}



.image-banner-slider {
  margin: 20px 15px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 160px;
}

.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
}

.slider-track img {
  width: 100%;
  height: 160px;
  object-fit: cover !important;
  display: block;
  flex-shrink: 0;
  border-radius: 15px;
}

/* Indikator garis */
.slider-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.slider-indicator .bar {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-indicator .bar.active {
  background-color: #ffffff;
}
/* Overlay transparan gelap */
.image-banner-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.4));
  z-index: 1;
  pointer-events: none; /* agar tidak ganggu klik */
}

/* Tambah z-index agar konten di atas overlay */
.image-banner-slider .slider-track,
.image-banner-slider .slider-indicator {
  position: relative;
  z-index: 2;
}

.search-container {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 8px 12px;
  margin: 0 10px 15px;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.search-container i {
  color: #999;
  margin-right: 8px;
  font-size: 16px;
}

.search-container input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background-color: transparent;
  color: #333;
}



/* Judul Status Request Konten */
.status-title {
  font-size: 16px;
  font-weight: bold;
  margin: 30px 10px 10px;
  color: #333;
}

/* Status Tab Bar */
.status-menu {
  display: flex;
  justify-content: space-around;
  margin: 10px 10px 15px;
  margin-top: 10px; /* Tambahan untuk beri jarak dari judul */
}
.status-tab {
  flex: 1;
  margin: 0 5px;
  padding: 10px 0;
  background-color: #d6f5ee;
  color: #00796b;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
}
.status-tab.active {
  background-color: #009688;
  color: white;
}

/* Status Cards */
.row-grid {
  display: grid;
  grid-template-columns: 5% 35% 35% 25%;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.status-list {
  padding: 0 10px;
  margin-bottom: 25px; /* Tambahan agar tidak mepet dengan service */
}
.status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-size: 14px;
}
.status-badge {
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}
.status-badge.red {
  background-color: #e74c3c;
}
.status-badge.yellow {
  background-color: #f1c40f;
  color: black;
}
.status-badge.green {
  background-color: #2ecc71;
}


.menu-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 450px;
    width: 90%;
    padding: 10px 20px;
    background: linear-gradient(90deg, #00bfa5, #00a897);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s ease-out;
    z-index: 999;
}

.menu-bar ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu-bar li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-bar li a i {
    font-size: 18px;
}

.menu-bar li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}


@media (min-width: 768px) {
  body {
    max-width: 480px;
    margin: auto;
  }
}
