.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}
.mv-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--accent1);
}
.mv-card h3 { color: var(--accent1); margin-top: 0; font-size: 1.5rem; }

.values-container-animated {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 50px 0;
}
.val-col h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 10px;
}
.val-col h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 3px; border-radius: 2px;
}
.val-col.positive h3 { color: #00695c; }
.val-col.positive h3::after { background: linear-gradient(90deg, transparent, #00695c, transparent); }
.val-col.negative h3 { color: #b71c1c; }
.val-col.negative h3::after { background: linear-gradient(90deg, transparent, #b71c1c, transparent); }

.val-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }

.val-item {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  cursor: default;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  display: flex; align-items: center; gap: 10px;
}

.val-col.positive .val-item {
  background: linear-gradient(135deg, #e0f2f1, #ffffff);
  border: 1px solid rgba(0, 105, 92, 0.1);
  color: #004d40;
}
.val-col.positive .val-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 105, 92, 0.15);
  border-color: #00695c;
  background: #fff;
}

.val-col.negative .val-item {
  background: linear-gradient(135deg, #ffebee, #ffffff);
  border: 1px solid rgba(183, 28, 28, 0.1);
  color: #c62828;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
.val-col.negative .val-item:hover {
  animation: shake 0.4s ease-in-out;
  background: #fafafa;
  color: #999;
  box-shadow: none;
  border-color: #ddd;
}

@keyframes popIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.val-item:nth-child(1) { animation-delay: 0.1s; }
.val-item:nth-child(2) { animation-delay: 0.2s; }
.val-item:nth-child(3) { animation-delay: 0.3s; }
.val-item:nth-child(4) { animation-delay: 0.4s; }
.val-item:nth-child(5) { animation-delay: 0.5s; }
.val-item:nth-child(6) { animation-delay: 0.6s; }
.val-item:nth-child(7) { animation-delay: 0.7s; }
.val-item:nth-child(8) { animation-delay: 0.8s; }
.val-item:nth-child(9) { animation-delay: 0.9s; }
.val-item:nth-child(10) { animation-delay: 1.0s; }
.val-item:nth-child(11) { animation-delay: 1.1s; }

.admin-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 20px;
  margin-bottom: 40px;
}

.admin-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center; 
  gap: 25px; 
  text-align: left; 
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.admin-photo img {
  width: 220px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px; 
  border: 2px solid var(--accent1);
  flex-shrink: 0;
}

.admin-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

@media (max-width: 600px) {
  .admin-card {
    flex-direction: column;
    text-align: center;
  }
}
.admin-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.admin-card a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.admin-card a:hover { color: var(--accent1); }


.admin-role { font-size: 0.9rem; color: var(--accent1); font-weight: 600; margin-bottom: 5px; text-transform: uppercase; }
.admin-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.admin-name:hover { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--accent1); }
.admin-contact { font-size: 0.95rem; color: var(--muted); display: block; align-items: center; gap: 8px; margin-top: auto;}

.doctors-cta {
  background: linear-gradient(135deg, var(--accent1), #9c53f0);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  color: #fff;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(111, 4, 233, 0.3);
}
.doctors-cta h2 { color: #fff; margin-top: 0; }
.doctors-cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 25px; }
.doctors-cta .btn {
  background: #fff;
  color: var(--accent1);
  font-size: 1.1rem;
  padding: 12px 30px;
}
.doctors-cta .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .mission-vision-grid, .values-container-animated { grid-template-columns: 1fr; }
}

