.footer{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(187,225,250,.12), transparent 26%),
    linear-gradient(135deg, #061f35 0%, #092f4f 48%, #0f4c75 100%);
  padding:86px 0;
  color:#fff;
}

.footer-circle{
  position:absolute;
  width:340px;
  height:340px;
  right:-120px;
  top:-110px;
  border-radius:50%;
  border:1px solid rgba(187,225,250,.14);
}

.footer-circle::after{
  content:"";
  position:absolute;
  inset:24px;
  border-radius:50%;
  border:1px solid rgba(187,225,250,.1);
}

.footer-container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:54px;
}

.footer-logo img{
  width:180px;
  margin-bottom:22px;
  filter:brightness(1.08);
}

.footer-logo p{
  max-width:360px;
  line-height:1.9;
  color:#d8eefc;
}

.footer-links,
.footer-social{
  display:flex;
  flex-direction:column;
}

.footer-links h4,
.footer-social h4{
  margin-bottom:24px;
  font-family:'Cormorant Garamond', serif;
  font-size:1.55rem;
  font-weight:700;
}

.footer-links a{
  width:max-content;
  color:#d8eefc;
  text-decoration:none;
  margin-bottom:14px;
  transition:.3s ease;
}

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

.social-icons{
  display:flex;
  gap:14px;
}

.social-icons a{
  width:46px;
  height:46px;
  background:rgba(187,225,250,.12);
  border:1px solid rgba(187,225,250,.22);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  transition:.3s ease;
}

.social-icons a:hover{
  background:#3282b8;
  transform:translateY(-4px);
}

.subfooter{
  background:#061f35;
  color:#d8eefc;
  text-align:center;
  padding:18px;
  font-size:.9rem;
  line-height:1.6;
}

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

  .footer-container{
    grid-template-columns:1fr;
    gap:38px;
  }
}