/* ================= FOOTER — "Soft Sky Panel" ================= */

#footer{
  margin-top: auto;
}

.footer{
  margin-top: 80px;
  background: var(--bg-ink, #0c2233);
  color: #cfe3f0;
  position: relative;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

.footer::before{
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47,123,255,.35), transparent 70%);
  filter: blur(10px);
}
.footer::after{
  content: "";
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(91,110,245,.22), transparent 70%);
}

.footer-wave{ display: none; }

.footer-container{
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-col h4{
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2f7bff, #4a93ff);
}

.footer-logo img{ height: 40px; margin-bottom: 16px; border-radius: 8px; background: #fff; padding: 4px; }

.footer-col p{ font-size: 14px; color: #9fb7c8; line-height: 1.7; }

.footer-col ul li{ margin-bottom: 11px; }
.footer-col ul li a{
  font-size: 14px;
  color: #b8cbd9;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-col ul li a:hover{ color: #4a93ff; padding-left: 4px; }

.footer-location-list li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #b8cbd9;
}
.footer-location-list i{ color: #4a93ff; }

.footer-contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
  color: #b8cbd9;
}
.footer-contact-item i{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,147,255,.12);
  color: #4a93ff;
  border-radius: 10px;
  flex-shrink: 0;
}
.footer-contact-item a{ color: #d7e6ef; }
.footer-contact-item a:hover{ color: #4a93ff; }

.socials{
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfe3f0;
  transition: all .25s ease;
}
.socials a:hover{
  background: linear-gradient(135deg, #2f7bff, #123f8f);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom{
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 24px 28px;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #8ea6b8;
}
.footer-bottom a{ color: #b8cbd9; }
.footer-bottom a:hover{ color: #4a93ff; }

@media (max-width: 980px){
  .footer-container{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .footer-container{ grid-template-columns: 1fr; padding-top: 60px; }
  .footer{ border-radius: 28px 28px 0 0; margin-top: 80px; }
}
