.site-footer {
  color: #fff;
  font-family: "Inter", sans-serif;
}

/* TOP */
.footer-top {
  padding: 60px 0;
  background: linear-gradient(135deg, #1e2f5f 0%, #2a3d6f 30%, #3d4a7f 60%, #4a3d8f 100%);
  position: relative;
}

.footer-brand img {
  max-width: 170px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(286.47deg, #040e38 -1.09%, #071862 50%, #792ef1 100%);
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffffff;
  opacity: 0.95;
}

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links li a:hover {
  opacity: 0.7;
}

.footer-links li.copyright-item {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.9;
}

/* BOTTOM */
.footer-bottom {
  background: #0a1529;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .row {
  position: relative;
}

.footer-social {
  display: flex;
  align-items: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0a1529;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0a1529;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
}

.footer-contact {
  position: relative;
  padding: 0 20px;
}

.footer-contact:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: #ffffff;
}

.contact-item i {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-contact:not(:first-child)::before {
    display: none;
  }

  .footer-contact {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-contact:first-child {
    border-top: none;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 50px 0;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .contact-item {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin-bottom: 10px;
  }
}