body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #242124;
    color: white;
  }

.navbar-custom {
  background-color: #003A6B;
  padding: 20px 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); /* diperbaiki dari 'transparent' */
  position: sticky;
  top: 0;
  z-index: 999;
}

  .navbar-custom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand a {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }

  .nav-links li a {
    text-decoration: none;
    color: #FFF;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-links li a:hover {
    color: #D3D3D3;
  }

  .btn-signin {
    background-color: #fff;
    color: #003A6B;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
  }

  .btn-signin:hover {
    background-color: #D3D3D3;
  }

  .map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
  }

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  height: 0;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


  .section-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
  }

  .form-label, .form-control, .invalid-feedback {
    color: #000;
  }

  .text-center a {
    color: #bbb;
    margin: 0 10px;
    text-decoration: none;
  }

  .text-center a:hover {
    color: #fff;
  }
  
  .hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 50px;
  }

  .product-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      height: 100%;
      cursor: pointer;
  }

  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .product-image {
      height: 250px;
      object-fit: cover;
      width: 100%;
  }

  .product-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--accent-color);
      color: white;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: bold;
  }

  .price-tag {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--secondary-color);
  }

  .original-price {
      text-decoration: line-through;
      color: #6b7280;
      font-size: 1rem;
  }

  .btn-order {
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      border: none;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: bold;
      transition: all 0.3s ease;
  }

  .btn-order:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
  }

  .search-bar {
      margin-bottom: 30px;
  }

.btn-homepage {
  display: inline-block;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #003A6B, #005EA6);
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 58, 107, 0.5);
  transition: all 0.3s ease;
}

.btn-homepage:hover {
  background: linear-gradient(135deg, #005EA6, #003A6B);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 58, 107, 0.7);
}

.btn-homepage i {
  margin-right: 10px;
}

.card-hover:hover {
  background-color: #003A6B !important;
  transition: background-color 0.3s ease;
    transform: translateY(-5px);
    cursor: pointer;

}
.profile-container {
  max-width: 750px;
  margin: auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  color: #000;
}

.profile-image {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #003A6B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.profile-header h2 {
  font-weight: bold;
  color: #003A6B;
}

.btn-primary {
  background: linear-gradient(135deg, #003A6B, #005EA6);
  border: none;
  font-weight: bold;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #005EA6, #003A6B);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 58, 107, 0.5);
}


.profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #003A6B;
}

.position-relative {
    position: relative;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
    cursor: pointer;
}

.position-relative:hover .overlay-text {
    opacity: 1;
}
.form-control,
.form-select {
  border-radius: 14px;
  padding: 14px;
  font-size: 15px;
  box-shadow: inset 2px 2px 5px #d1d9e6, inset -2px -2px 5px #fff;
  border: none;
  background: #e9ecef;
  transition: all 0.3s;
}


.card-header{
  background-color: #003A6B;
  color: #FFF;
}

.original-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #999;
}

.membership-card {
  border-radius: 20px;
  padding: 25px;
  color: white;
  position: relative;
  overflow: hidden;
  animation: floatIn 1s ease forwards;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.membership-card.active {
  background: linear-gradient(135deg, #28a745, #007e33);
}

.membership-card.inactive {
  background: linear-gradient(135deg, #dc3545, #a71d2a);
}

.membership-icon {
  font-size: 50px;
  opacity: 0.2;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

@keyframes floatIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.status-header {
  font-size: 1.5rem;
  font-weight: bold;
}

.status-detail {
  font-size: 1rem;
}