.site-footer {
  background: linear-gradient(180deg, #0f1b34, #060b17);
  padding: 80px 20px;
  border-top: 1px solid rgba(56,189,248,0.25);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.footer-map iframe {
  width: 460px;
  height: 300px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.footer-info {
  background: linear-gradient(145deg, #16213a, #0f172a);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 18px;
  padding: 32px 40px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.6);
    text-align: center;
  align-items: center;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-info p,
.footer-info a {
  color: #cbd5f5;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-info a:hover {
  color: #38bdf8;
}

.footer-info img {
  width: 16px;
}

.footer-logo {
  width: 100px !important;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-map iframe {
    width: 100%;
    height: 240px;
    margin: 0 auto;
    display: block;
  }

  .footer-info {
    width: 100%;
    padding: 24px 20px;
  }

  .footer-logo {
    margin: 0 auto 20px;
    display: block;
  }
}
