/* =========================
   FOOTER (NAVBAR + HERO UYUMLU)
========================= */

.main-footer{
  position: relative;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(73, 121, 225, 0.699), transparent 60%),
    radial-gradient(900px 420px at 85% 80%, rgba(6, 181, 212, 0.721), transparent 60%),
    linear-gradient(135deg, #34bb97, #0b1224);
  color: #eaf3ff;
  padding: 90px 0 28px;
  font-size: 15px;
}

/* GRID */
.footer-top{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 42px;
}

/* LOGO */
.footer-logo{
  width: 150px;
  margin-bottom: 22px;
  border-radius: 18px;
  padding: 8px;
  background: rgb(138, 251, 209);
  border: 1px solid rgba(201, 226, 222, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 18px 45px rgba(6, 181, 212, 0.873);
}

/* ABOUT TEXT */
.footer-about p{
  line-height: 1.75;
  color: rgba(234,243,255,.78);
  max-width: 320px;
}

/* HEADINGS */
.footer-box h4{
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: .04em;
  color: #eaf3ff;
  position: relative;
}

.footer-box h4::after{
  content:"";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

/* LINKS */
.footer-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li{
  margin-bottom: 10px;
}

.footer-box a{
  color: rgba(234,243,255,.75);
  text-decoration: none;
  transition: .2s ease;
}

.footer-box a:hover{
  color: #bff3ff;
  padding-left: 6px;
}

/* CONTACT */
.contact-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(234,243,255,.78);
}

.contact-list i{
  color: #7dd3fc;
}

/* SOCIAL */
.social-links{
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social-links a{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  color: #eaf3ff;
  font-size: 18px;
  transition: .18s ease;
}

.social-links a:hover{
  transform: translateY(-2px);
  border-color: rgba(6,182,212,.45);
  box-shadow:
    0 0 0 4px rgba(6,182,212,.12),
    0 18px 55px rgba(6,182,212,.16);
}

/* BOTTOM */
.footer-bottom{
  border-top: 1px solid rgba(255, 255, 255, 0.473);
  padding-top: 25px;
  text-align: center;
  font-size: 15px;
  color: rgba(253, 253, 253, 0.807);
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 900px){

  .main-footer{
    padding: 70px 0 24px;
  }

  .footer-top{
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-box h4{
    font-size: 16px;
  }

}

/* Mobil */
@media (max-width: 600px){

  .main-footer{
    padding: 55px 0 20px;
    font-size: 14px;
  }

  .footer-top{
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-box{
    padding-bottom: 10px;
  }

  .footer-about p{
    margin: 0 auto;
    max-width: 260px;
  }

  .footer-logo{
    width: 120px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-box h4{
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-box h4::after{
    margin-left: auto;
    margin-right: auto;
  }

  .footer-box ul li{
    margin-bottom: 8px;
  }

  .contact-list li{
    justify-content: center;
    font-size: 14px;
  }

  .social-links{
    justify-content: center;
    gap: 12px;
  }

  .social-links a{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-bottom{
    font-size: 13px;
    padding-top: 18px;
  }

  .footer-bottom p{
    margin-bottom: 8px;
  }

}