/* =========================
   GYANEXIS FOOTER
========================= */

.gx-footer {
  position: relative;
  overflow: hidden;

  margin-top: 50px;

  background:
    linear-gradient(160deg,
      #153f5c 0%,
      #000000 55%,
      #10334b 100%);

  color: #ecf3f7;
}

/* =========================
   Animated Background
========================= */

.gx-footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gx-wave {
  position: absolute;

  width: 190%;
  height: 110%;

  left: -36%;
  top: -52%;

  border-radius: 46%;

  background: rgba(37, 99, 235, 0.12);

  animation: gxRotate 14s linear infinite;
}

.gx-wave-2 {
  background: rgba(196, 181, 253, 0.10);
  animation-duration: 18s;
}

.gx-wave-3 {
  background: rgba(255, 255, 255, 0.05);
  animation-duration: 24s;
}

@keyframes gxRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =========================
   Main Content
========================= */

.gx-footer-container {
  position: relative;
  z-index: 2;

  max-width: 1200px;

  margin: 0 auto;

  padding:
    65px 24px 30px;

  display: grid;

  grid-template-columns:
    1.4fr 1fr 1fr 1fr;

  gap: 40px;
}

/* =========================
   Company Section
========================= */

.gx-company-name {
  margin: 0;

  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;

  color: #ffffff;
}

.gx-company-tagline {
  margin-top: 8px;
  margin-bottom: 16px;

  color: #d7e8f3;

  font-size: 0.95rem;
}

.gx-company-description {
  max-width: 420px;

  line-height: 1.7;

  color: #c7d8e4;
}

/* =========================
   Titles
========================= */

.gx-footer-title {
  margin-bottom: 18px;

  font-size: 1.1rem;
  font-weight: 700;

  color: #f9dc99;
}

/* =========================
   Links
========================= */

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

.gx-footer-links li {
  margin-bottom: 12px;
}

.gx-footer-links a {
  position: relative;

  color: #d8e5ee !important;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.gx-footer-links a:hover {
  color: #f9dc99;
  transform: translateX(4px);
}

/* =========================
   Social Icons
========================= */

.gx-social-links {
  display: flex;
  gap: 12px;

  margin-top: 24px;
}

.gx-social-link {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  color: #ffffff !important;

  background: rgba(255, 255, 255, 0.10);

  border: 1px solid rgba(255, 255, 255, 0.18);

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.gx-social-link i {
  color: #ffffff !important;
}

.gx-social-link:hover {
  transform: translateY(-4px);

  background: rgba(196, 181, 253, 0.20);

  border-color: rgba(196, 181, 253, 0.50);
}

/* =========================
   Bottom Bar
========================= */

.gx-footer-bottom {
  position: relative;
  z-index: 2;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);

  background:
    rgba(8, 24, 36, 0.35);

  backdrop-filter: blur(8px);
}

.gx-footer-bottom-content {
  max-width: 1200px;

  margin: 0 auto;

  padding:
    18px 24px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 12px;

  flex-wrap: wrap;
}

.gx-footer-bottom p {
  margin: 0;

  color: #c3d4df;

  font-size: 0.92rem;
}

.gx-highlight {
  color: #f9dc99;
  font-weight: 700;
}

/* =========================
   Tablet
========================= */

@media (max-width: 992px) {

  .gx-footer-container {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 35px;
  }

}

/* =========================
   Mobile
========================= */

@media (max-width: 680px) {

  .gx-footer-container {
    grid-template-columns: 1fr;

    text-align: center;

    padding-top: 55px;
  }

  .gx-company-description {
    margin: 0 auto;
  }

  .gx-social-links {
    justify-content: center;
  }

  .gx-footer-bottom-content {
    justify-content: center;
    text-align: center;
  }

  .gx-company-name {
    font-size: 1.7rem;
  }

}