.site-footer {
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
  margin-top: 70px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.footer-box h3,
.footer-box h4 {
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-box h3::after,
.footer-box h4::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #8b1c1c;
  display: block;
  margin-top: 6px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Links */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-box ul li a:hover {
  color: #60a5fa;
  padding-left: 6px;
}

/* Social Icons */
.social-links {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #8b1c1c;
}

/* Map */
.map-box iframe {
  width: 100%;
  height: 210px;
  border: none;
  border-radius: 10px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    height: 180px;
  }
}
