*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fff;
  overflow-x:hidden;
}

/* =========================
   FOOTER
========================= */

.footer{
  width:100%;
  background:#f7f7f7;
  padding-top:80px;
  overflow:hidden;
}

/* CONTAINER */

.footer-container{
  width:100%;
  max-width:1350px;
  margin:auto;
  padding:0 25px 70px;

  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:50px;
  align-items:start;
}

/* COMMON */

.footer-box{
  width:100%;
}

.footer-box h3{
  font-size:34px;
  color:#111;
  margin-bottom:18px;
  text-align:center;
  font-weight:700;
}

.footer-line{
  width:75px;
  height:4px;
  background:#f4b400;
  margin:0 auto 35px;
  border-radius:50px;
}

/* =========================
   LEFT SECTION
========================= */

.footer-about{
  animation:fadeUp 1s ease;
}

.footer-logo{
  width:100%;
  max-width:300px;
  display:block;
  margin-bottom:25px;
}

.footer-text{
  color:#555;
  line-height:1.9;
  margin-bottom:30px;
  font-size:16px;
}

.footer-info{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.info-item i{
  min-width:22px;
  font-size:20px;
  color:#111;
  margin-top:4px;
}

.info-item span{
  font-size:17px;
  color:#222;
  line-height:1.8;
  word-break:break-word;
}

/* =========================
   MAP
========================= */

.footer-map{
  animation:fadeUp 1.2s ease;
}

.map-box{
  width:100%;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.map-box iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

/* =========================
   RIGHT
========================= */

.footer-links{
  animation:fadeUp 1.4s ease;
}

.social-icons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:35px;
}

.social-icons a{
  width:58px;
  height:58px;
  border-radius:18px;
  background:#fff;
  color:#111;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;
  font-size:22px;

  box-shadow:0 8px 20px rgba(0,0,0,0.08);

  transition:.4s ease;
}

.social-icons a:hover{
  transform:translateY(-8px);
  background:#f4b400;
  color:#fff;
}

/* LINKS */

.footer-links ul{
  list-style:none;
  background:#fff;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.footer-links ul li{
  border-bottom:1px solid #ececec;
}

.footer-links ul li:last-child{
  border:none;
}

.footer-links ul li a{
  display:flex;
  align-items:center;
  gap:16px;

  padding:22px 28px;

  text-decoration:none;
  color:#111;

  font-size:18px;
  font-weight:500;

  transition:.4s ease;
}

.footer-links ul li a i{
  min-width:20px;
}

.footer-links ul li a:hover{
  background:#f4b400;
  color:#fff;
  padding-left:38px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
  width:100%;
  border-top:1px solid #ddd;

  padding:25px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;

  max-width:1350px;
  margin:auto;
}

.footer-bottom p{
  color:#444;
  font-size:15px;
  line-height:1.8;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(50px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .footer-container{
    grid-template-columns:1fr 1fr;
  }

  .footer-about{
    grid-column:1/-1;
    text-align:center;
  }

  .footer-logo{
    margin:0 auto 25px;
  }

  .footer-info{
    align-items:center;
  }

  .info-item{
    max-width:700px;
    width:100%;
    justify-content:center;
  }

}

@media(max-width:991px){

  .footer{
    padding-top:70px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .footer-about,
  .footer-map,
  .footer-links{
    text-align:center;
  }

  .footer-logo{
    margin:0 auto 25px;
  }

  .footer-text{
    max-width:700px;
    margin:auto auto 30px;
  }

  .footer-info{
    align-items:center;
  }

  .info-item{
    justify-content:center;
    text-align:left;
  }

  .map-box iframe{
    height:380px;
  }

}
@media(max-width:480px){

  .footer-container{

    padding:0 14px 45px;

  }

  .footer-box h3{

    font-size:24px;

  }

  .footer-logo{

    max-width:180px;

  }

  .footer-text{

    font-size:13px;

  }

  .info-item a{

    font-size:13px;

  }

  .map-box iframe{

    height:220px;

  }

  .footer-links ul li a{

    font-size:14px;

  }

}
@media(max-width:768px){

  .footer{

    padding-top:55px;

  }

  .footer-container{

    grid-template-columns:1fr;

    gap:40px;

    padding:0 16px 50px;

  }

  /* COMMON */

  .footer-box{

    width:100%;

    text-align:center;

  }

  .footer-box h3{

    font-size:28px;

    margin-bottom:15px;

  }

  .footer-line{

    margin:0 auto 25px;

  }

  /* LOGO */

  .footer-logo{

    max-width:220px;

    margin:0 auto 20px;

  }

  .footer-text{

    font-size:14px;

    line-height:1.8;

    margin-bottom:25px;

  }

  /* INFO */

  .footer-info{

    gap:18px;

    align-items:flex-start;

  }

  .info-item{

    width:100%;

    justify-content:flex-start;

    align-items:flex-start;

    text-align:left;

    gap:12px;

  }

  .info-item i{

    font-size:17px;

    min-width:18px;

    margin-top:5px;

  }

  .info-item a{

    font-size:14px;

    line-height:1.7;

    word-break:break-word;

  }

  /* MAP */

  .map-box{

    border-radius:18px;

  }

  .map-box iframe{

    height:260px;

  }

  /* SOCIAL */

  .social-icons{

    gap:12px;

    margin-bottom:28px;

  }

  .social-icons a{

    width:48px;
    height:48px;

    border-radius:14px;

    font-size:18px;

  }

  /* LINKS */

  .footer-links ul{

    border-radius:18px;

  }

  .footer-links ul li a{

    padding:16px 18px;

    font-size:15px;

    gap:12px;

  }

  .footer-links ul li a:hover{

    padding-left:24px;

  }

  /* BOTTOM */

  .footer-bottom{

    flex-direction:column;

    text-align:center;

    gap:10px;

    padding:20px 15px;

  }

  .footer-bottom p{

    font-size:13px;

    line-height:1.7;

  }

}

@media(max-width:576px){

  .footer-box h3{
    font-size:26px;
  }

  .footer-text{
    font-size:14px;
  }

  .info-item{
    gap:12px;
  }

  .info-item i{
    font-size:17px;
  }

  .info-item span{
    font-size:14px;
    line-height:1.7;
  }

  .social-icons{
    gap:12px;
  }

  .social-icons a{
    width:48px;
    height:48px;
    border-radius:14px;
    font-size:17px;
  }

  .footer-links ul{
    border-radius:18px;
  }

  .footer-links ul li a{
    font-size:15px;
    gap:12px;
    padding:16px 18px;
  }

  .footer-links ul li a:hover{
    padding-left:28px;
  }

  .map-box{
    border-radius:18px;
  }

  .map-box iframe{
    height:260px;
  }

  .footer-bottom p{
    font-size:13px;
  }

}

@media(max-width:380px){

  .footer-container{
    padding:0 14px 50px;
  }

  .footer-box h3{
    font-size:22px;
  }

  .footer-logo{
    max-width:190px;
  }

  .footer-links ul li a{
    font-size:14px;
  }

  .map-box iframe{
    height:230px;
  }

}

.info-item a{
  color: inherit;
  text-decoration: none;
}

.info-item a:hover{
  color: #f4b400;
}