.footer {
  background: #ffffff;
  color: #111827;
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid #e5e7eb;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.footer::before {
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.08);
  top: -120px;
  left: -100px;
}

.footer::after {
  width: 220px;
  height: 220px;
  background: rgba(168, 85, 247, 0.06);
  bottom: -100px;
  right: -80px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.footer-brand h2 {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 800;
  color: #111827;
}

.footer-brand h2 span {
  color: #ffae00;
}

.footer-brand p {
  color: #4b5563;
  line-height: 1.9;
  font-size: 15px;
  max-width: 420px;
}


.footer-socials {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #111827;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #e5e7eb;
}

.footer-socials a:hover {
  background: #ffa600;
  color: white;
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #111827;
  position: relative;
}

.footer-links h3::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #ffae00;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
}

.footer-links a {
  display: block;
  color: #4b5563;
  text-decoration: none;
  margin: 12px 0;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #111827;
  padding-left: 8px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 55px auto 0;
  padding-top: 25px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 14px;
}

.footer-policy {
  display: flex;
  gap: 22px;
}

.footer-policy a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-policy a:hover {
  color: #111827;
}

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-policy {
    justify-content: center;
    flex-wrap: wrap;
  }
}