 /* ✅ Buat Card Section Map: style untuk menampilkan kartu alamat Tegal dan Tangerang hover Orange */
  .location-card {
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    border: 2px solid #ccc;
    padding: 1.2rem;
    border-radius: 8px;
  }

  .location-card:hover {
    background-color: #ff5600;
    color: white !important;
    border-color: #ff5600;
  }

  .location-card.active {
    border-color: #ff5600;
  }

  .location-subtitle {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
  } 