.compact-footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.02);
}

.footer-right {
  max-width: 650px;
  text-align: right;
  flex: 1;
}

.footer-bottom {
  background-color: #2b2b2b;
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid #404040;
}

.copyright {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.3px;
}

.footer-slogan {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.footer-description {
  font-size: 13px;
  color: #000000;
  line-height: 1.7;
  margin: 0 0 20px 0;
  letter-spacing: 0.2px;
}

.footer-social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1.5px solid #e0e0e0;
  border-radius: 50%;
  color: #495057;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #e31e24;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s ease,
    height 0.35s ease;
  z-index: 0;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  border-color: #e31e24;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(227, 30, 36, 0.25);
}

.social-link svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
}

.social-link:hover svg {
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 28px 20px;
  }

  .footer-left,
  .footer-right {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    padding: 14px 20px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    padding: 24px 20px;
  }

  .footer-logo {
    width: 90px;
    height: 90px;
  }

  .copyright {
    font-size: 12px;
  }

  .footer-slogan {
    font-size: 15px;
  }

  .footer-description {
    font-size: 15px;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    padding: 12px 16px;
  }
}
