/* === NAVBAR HEADER === */
.navbar .header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar .header-left img {
  width: 60px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar .header-titles h1 {
  font-size: 18px;
  font-weight: 500;
  margin-left: -170px;
}

.navbar .header-titles h2 {
  font-size: 15px;
  font-weight: 500;
  margin-left: -170px;
}

/* === KONTEN VISI & MISI === */
.vm-container {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card Styles */
.card {
  background-color: #f1f9ff;
  margin-top: 50px;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Visi Card Spesifik */
.visi-card {
  text-align: center;
  border-top: 5px solid var(--primary-red);
}

.visi-card i {
  font-size: 40px;
  color: #d4a017; /* Warna emas agar elegan */
  margin-bottom: 20px;
  opacity: 0.8;
}

.visi-card h3 {
  color: var(--dark-blue);
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.visi-card p {
  font-size: 18px;
  font-weight: 550;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
}

/* Misi Card Spesifik */
.misi-card h3 {
  color: var(--dark-blue);
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #a52a2a;
  padding-bottom: 15px;
}

.misi-list {
  list-style: none;
}

.misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  padding: 15px;
  background: var(--bg-color);
  border-radius: 8px;
  transition: transform 0.3s;
}

.misi-list li:hover {
  transform: translateX(10px);
  background: #eef4f9;
}

.misi-list i {
  color: var(--primary-red);
  font-size: 20px;
  margin-top: 3px;
}

/* === RESPONSIVE DESIGN === */
@media screen and (max-width: 768px) {
  .visi-card p {
    font-size: 18px;
  }
  .navbar .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .navbar .header-left img {
    width: 50px;
    height: auto;
  }
  .navbar .header-titles h1 {
    margin-left: -280px;
    font-size: 16px;
    font-weight: 400;
  }
  .navbar .header-titles h2 {
    margin-left: -280px;
    font-size: 14px;
    font-weight: 400;
  }
  .page-header {
    height: 270px;
  }
  .page-header h2 {
    font-size: 28px;
    margin: 30px 0;
  }
  .page-header p {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 480px) {
  .visi-card p {
    font-size: 16px;
  }
  .navbar .header-left {
    display: flex;
    align-items: center;
  }
  .navbar .header-left img {
    margin-left: -35px;
    width: 35px;
    height: auto;
  }
  .navbar .header-titles h1 {
    margin-left: -100px;
    font-size: 10px;
    font-weight: 400;
  }
  .navbar .header-titles h2 {
    margin-left: -100px;
    font-size: 9px;
    font-weight: 400;
  }
  .page-header {
    height: 220px;
  }
  .page-header h2 {
    font-size: 18px;
    margin: -5px 0 20px 0;
  }
  .page-header p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .bar {
    margin-right: -10px;
  }
}
