/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 0 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-address h3,
.footer-social h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-address {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-map {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-address-link {
  color: #cccccc;
  transition: color var(--transition-normal);
  display: inline-block;
}

.footer-address-link:hover {
  color: #ffffff;
}

.footer-address p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: inherit;
  margin: 0;
}

.footer-social {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all var(--transition-normal);
}

.social-icons a:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-3px);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

/* Footer Responsive */
@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-address,
  .footer-social {
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}