.footer {
  background: #000;
  color: #cbd5e1;
  padding: 60px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-logo {
  max-width: 160px;
}

.footer-center {
  text-align: center;
}

.footer-doctors {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-right {
  text-align: right;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}