.profile-card {
  max-width: 400px;
  width: 100%;
  padding: 20px;
  text-align: center;
  margin: 20px auto;
  border-radius: 20px;
}

.card-header .logo {
  width: 120px;              /* ukuran fix lingkaran */
  height: 120px;
  border-radius: 50%;         /* lingkaran sempurna */
  margin-bottom: 10px;
  overflow: hidden;           /* crop gambar biar nggak keluar */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.card-header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* gambar penuh, kepotong lingkaran */
  object-position: center;    /* selalu center */
}

.card-header h2 { 
  margin: 10px 0 5px; 
  font-weight: 700; 
  font-size: 18px;          /* ukuran lebih konsisten */
  line-height: 1.4;         /* spasi nyaman */
  color: #222;              /* teks lebih tegas */
}

.card-header p { 
  color: #007aff; 
  font-size: 14px; 
  margin: 0;                /* hilangkan margin default */
  line-height: 1.3; 
}

/* Body list */
.card-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.card-body li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;            /* spasi antar item */
  font-size: 14px;
  color: #333;              /* teks lebih readable */
  padding: 6px 10px;        /* beri ruang dalam */
  border-radius: 8px;       /* sudut lembut */
  background: rgba(0,0,0,0.03); /* subtle background biar rapi */
  font-weight: 900;
}

/* Accordion */
.accordion {
  margin-top: 20px;
}
.accordion-item {
  border-top: 1px solid rgba(0,0,0,0.1);
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 12px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
  color: #007AFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header:hover { color: #007aff; }

/* Chevron panah */
.accordion-header .arrow {
  transition: transform 0.4s ease, opacity 0.4s ease;
  font-size: 14px;
  color: #007aff;
  opacity: 0.6;
}
.accordion-header.active .arrow {
  transform: rotate(180deg); /* panah berputar saat buka */
  opacity: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
  filter: blur(6px);
  transition: max-height 0.6s ease, opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  padding: 0 12px;
}
.accordion-content.open {
  max-height: 200px;
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
  padding: 12px;
}

/* Glass effect */
.glass {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 480px) {
  .profile-card { max-width: 95%; padding: 15px; }
  .accordion-content.open { max-height: 300px; }
}