/* ===== FOOTER STYLES ===== */
.footer {
  background-color: #ffffff;
  padding: 50px 0 20px 0;
  margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
}

.footer-section.company-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-section.links-section {
  display: flex;
  flex-direction: column;
  margin-left: 150px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-info .location {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #303030;
  margin: 0;
  white-space: nowrap;
}

.location-info .email {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6e6e6e;
  margin: 0;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  display: inline-block;
  transition: transform 0.3s ease;
  width: 28px;
  height: 28px;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-icon {
  width: 28px;
  height: 28px;
  transition: opacity 0.3s ease;
}

.footer-heading {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #092bf7;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.footer-links {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 16px !important;
}

.footer-links li {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 20px !important;
  min-height: auto !important;
}

.footer-link {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 16px !important;
}

.footer-link:hover {
  color: #092bf7;
}

.footer-link.active,
.footer-link:hover {
  color: #092bf7 !important;
}

.copyright-section {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid #eaeaea;
  text-align: center;
}

.copyright-text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6e6e6e;
  margin: 0;
}

.copyright {
  margin-top: 50px;
  border-top: 2px solid #777;
  padding-top: 10px;
}

/* Footer Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section.links-section {
    margin-left: 0;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-section.company-info {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 15px 0;
  }

  .footer-container {
    padding: 0 15px;
    gap: 25px;
  }

  .copyright-section {
    margin-top: 30px;
    padding: 15px 15px 0;
  }
}