body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar Modern */

.navbar-custom {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Gradient & Buttons */

.text-gradient {
  background: linear-gradient(135deg, #e3000f, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-custom-primary {
  background: linear-gradient(135deg, #e3000f, #ff4d4d);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn-custom-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 0, 15, 0.3);
  color: white;
}

/* Profile Section */

.profile-wrapper {
  position: relative;
  margin-top: -70px;
  z-index: 2;
}

.profile-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-bg {
  height: 250px;
  background: url('https://static.republika.co.id/uploads/images/inpicture_slide/mpm_200331182213-938.jpg') center/cover no-repeat;
  position: relative;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

/* Cards */

.motor-card {
  border: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
  background: #fff;
}

.motor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.motor-img-wrapper {
  background-color: #ffffff;
  padding: 16px;
  text-align: center;
}

/* Invoice/Result Style */

.result-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 20px;
  border: 1px dashed #ccc;
}

.result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

/* Search Box & Category Tabs */

.search-container input:focus {
  box-shadow: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab-btn {
  border: 1px solid #dee2e6;
  background-color: #fff;
  color: #6c757d;
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  background-color: #f8f9fa;
  color: #e3000f;
  border-color: #e3000f;
}

.tab-btn.active {
  background: linear-gradient(135deg, #e3000f, #ff4d4d);
  color: white;
  border: none;
  box-shadow: 0 4px 10px rgba(227, 0, 15, 0.3);
}

