@import url('https://fonts.googleapis.com/css2?family=Adamina&family=Darker+Grotesque:wght@300..900&family=Poetsen+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Footer */

.footer {
  font-family: "Darker Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  background-color: #1F2B53;
  color: #fff;
  padding: 60px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1370px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 220px;
}

/* Logo */
.footer-logo {
  border-radius: 20px;
  width: 130px;
  margin-bottom: 20px;
}

.footer-section .local-address, .footer-section .quick-nav-links {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-section .call-us, .footer-section .email-us, .footer-section .follow-us {
  font-size: 22px;
  font-weight: 900;
}

.footer-section .email-us, .footer-section .follow-us {
  margin-top: 15px;
}

.footer-section .call-us i, .footer-section .email-us i {
  font-size: 22px;
  margin-right: 10px;
}

.footer-section .follow-us {
  margin-bottom: 10px;
}

.footer-section p, 
.footer-section a {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.4;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a:hover {
  transition: 0.3s ease;
  opacity: 0.7;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;

}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons .facebook {
    margin-left: 0;
}

.map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 20px;
}

@media(max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }

  .footer-section.contact p {
    margin-bottom: 30px;
  }

  .footer-section.contact .social-icons {
    margin-bottom: 20px;
  }
  
  .map iframe {
    height: 300px;
  }
}