.social-footer-box {
  width: 100%;
  margin: 40px 0 60px;
  display: flex;
  justify-content: center;
  direction: rtl;
  font-family: inherit;
}

.social-footer-card {
  max-width: 1100px;
  width: calc(100% - 40px);
  background: #ffffff;
  border-radius: 26px;
  padding: 26px 60px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .05);
}

.social-footer-card .social-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 28px;
  color: #231f20;
}

.social-footer-card .social-grid {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}

.social-footer-card .social-item {
  text-decoration: none !important;
  color: #231f20 !important;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease;
}

.social-footer-card .social-item:hover {
  transform: translateY(-4px);
}

.social-footer-card .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #231f20;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 9px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-footer-card .social-item:hover .icon-circle {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .20);
}

.social-footer-card .icon-circle i {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 767px) {
  .social-footer-box {
    margin: 26px 0 42px;
  }

  .social-footer-card {
    width: calc(100% - 24px);
    padding: 20px 16px 24px;
    border-radius: 20px;
  }

  .social-footer-card .social-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .social-footer-card .social-grid {
    gap: 22px;
  }

  .social-footer-card .icon-circle {
    width: 60px;
    height: 60px;
  }

  .social-footer-card .icon-circle i {
    font-size: 24px;
  }

  .social-footer-card .social-item {
    font-size: 12px;
  }
}