@font-face {
  font-family: "Nunito";
  src: url(Nunito-VariableFont_wght.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}


#footer {
  width: 100%;
  background: #1a1a2e;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 4rem 2rem;
  color: white;
}

#footer .contact-us {
  display: flex;
  flex-direction: column;
}

#footer .contact-us h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -0.5px;
}

#footer .contact-us .contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#footer .contact-us .contact-details {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

#footer .contact-us .contact-details img {
  height: 1.8rem;
  width: 1.8rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

#footer .contact-us .contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

#footer .contact-us .contact-title {
  font-weight: 600;
  color: white;
  font-size: 1rem;
  margin: 0;
}

#footer .contact-us .contact h5 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

#footer .contact-us .contact h5 a[href^="tel"] {
    color: white !important;
    text-decoration: none !important;
}   

#footer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -0.5px;
}

#footer .social-platforms {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#footer .social-platforms .platform {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#footer .social-platforms .platform:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

#footer .social-platforms .platform img {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

#footer .social-platforms .platform h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

#footer .what-offer {
  display: flex;
  flex-direction: column;
}

#footer .what-offer .offers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#footer .what-offer .offers a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

#footer .what-offer .offers a:hover {
  color: white;
  margin-left: 5px;
}

#footer .what-offer .offers a h4 {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 630px) {
  #footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  #footer .social-platforms .platform {
    justify-content: flex-start;
  }

  #footer .contact-us .contacts {
    gap: 1.2rem;
  }

  #footer h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 400px) {
  #footer {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  #footer h3 {
    font-size: 1.1rem;
  }

  #footer .what-offer .offers a {
    font-size: 0.9rem;
  }
}
