/* =========================
   MODERN PREMIUM FOOTER
========================= */

.footer{
  position:relative;
  width:100%;
  background:linear-gradient(135deg,#0d2b52,#123d73,#1b5fa7);
  overflow:hidden;
  padding-top:90px;
  color:#fff;
}

/* TOP CURVE */

.footer::before{
  content:'';
  position:absolute;
  top:-120px;
  left:0;
  width:100%;
  height:180px;
  background:#fff;
  border-radius:0 0 50% 50%;
}

/* GLOW EFFECT */

.footer::after{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
  top:-200px;
  right:-120px;
  filter:blur(40px);
}

/* CONTAINER */

.footer-container{
  position:relative;
  z-index:2;

  width:100%;
  max-width:1350px;
  margin:auto;

  padding:0 25px 30px;

  display:grid;
  grid-template-columns:1.1fr 1fr 1fr;
  gap:45px;
}

/* COMMON */

.footer-box{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,0.12);

  border-radius:28px;

  padding:15px 18px;

  transition:.4s ease;
}

.footer-box:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.25);
}

.footer-box h3{
  font-size:30px;
  margin-bottom:14px;
  color:#fff;
  text-align:center;
  font-weight:700;
}

.footer-line{
  width:70px;
  height:4px;
  margin:0 auto 28px;
  border-radius:50px;
  background:#f4b400;
}

/* LOGO */

.footer-logo{
  width:100%;
  max-width:180px;
  display:block;
  margin:0 auto 22px;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}

/* INFO */

.footer-info{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.info-item i{
  min-width:20px;
  font-size:18px;
  color:#f4b400;
  margin-top:5px;
}

.info-item a{
  color:#fff;
  text-decoration:none;
  line-height:1.8;
  font-size:15px;
  transition:.3s ease;
}

.info-item a:hover{
  color: rgba(244, 180, 0, 1);
    animation: flashText 1.5s infinite ease-in-out;
}
@keyframes flashText{
    0%,100%{
        color: rgb(244, 0, 0);
        text-shadow:
            0 0 5px rgba(12, 244, 0, 0.5),
            0 0 10px rgba(0, 4, 244, 0.4);
    }

    50%{
        color: rgba(255, 230, 120, 1);
        text-shadow:
            0 0 10px rgba(0, 244, 155, 0.8),
            0 0 20px rgba(0, 228, 244, 0.8),
            0 0 40px rgba(0, 155, 244, 0.6),
            0 0 60px rgba(73, 0, 244, 0.4);
    }
}
/* MAP */

.map-box{
  width:100%;
  overflow:hidden;
  border-radius:22px;
  border:3px solid rgba(255,255,255,0.12);
}

.map-box iframe{
  width:100%;
  height:350px;
  border:0;
  display:block;
  filter:grayscale(10%);
}

/* SOCIAL */

.social-icons{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:30px;
}

.social-icons a{
  width:52px;
  height:52px;

  border-radius:16px;

  background:rgba(255,255,255,0.12);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  text-decoration:none;

  font-size:20px;

  transition:.4s ease;
}

.social-icons a:hover{
  background:#f4b400;
  transform:translateY(-6px) rotate(6deg);
}

/* LINKS */

.footer-links ul{
  list-style:none;
}

.footer-links ul li{
  margin-bottom:14px;
}

.footer-links ul li a{
  display:flex;
  align-items:center;
  gap:14px;

  text-decoration:none;

  background:rgba(255,255,255,0.08);

  padding:16px 18px;

  border-radius:14px;

  color:#fff;

  transition:.4s ease;
}

.footer-links ul li a{
  display:block;
  padding:10px 18px;
  border-radius:8px;
  transition:all 0.4s ease;
}

.footer-links ul li a:hover{
  background:rgba(244,180,0,0.15);
  color:#f4b400;
  padding-left:28px;
  transform:translateX(8px) scale(1.03);
  box-shadow:0 0 15px rgba(244,180,0,0.35);
}

.footer-links ul li a i{
  min-width:18px;
}

/* BOTTOM */

.footer-bottom{
  position:relative;
  z-index:2;

  border-top:1px solid rgba(255,255,255,0.15);

  padding:24px 20px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:15px;

  max-width:1350px;
  margin:auto;
}

.footer-bottom p{
  color:rgba(255,255,255,0.85);
  font-size:14px;
  line-height:1.8;
}

.footer-bottom a{
  color:#f4b400;
  text-decoration:none;
  font-weight:600;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .footer-container{
    grid-template-columns:1fr 1fr;
  }

  .footer-about{
    grid-column:1/-1;
  }

}

@media(max-width:768px){

  .footer{
    padding-top:70px;
  }

  .footer::before{
    top:-90px;
    height:130px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:30px;
    padding:0 16px 50px;
  }

  .footer-box{
    padding:28px 20px;
  }

  .footer-box h3{
    font-size:24px;
  }

  .footer-logo{
    max-width:150px;
  }

  .map-box iframe{
    height:250px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}

@media(max-width:480px){

  .footer-box h3{
    font-size:22px;
  }

  .info-item a{
    font-size:13px;
  }

  .footer-links ul li a{
    font-size:14px;
  }

  .social-icons a{
    width:46px;
    height:46px;
    font-size:18px;
  }

}