.footer {
  background-color: #1a1a1a;
  padding: 60px 0;
  color: #fff;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-info {
  text-align: right;
}

.footer-address {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contacts {
  margin-bottom: 25px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: #c5a47e;
}

.footer-contact-item i {
  color: #c5a47e;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #c5a47e;
  transform: translateY(-3px);
}

.social-link i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-info {
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}
