.footer {
  background: #1a2744;
  color: #f5f0e8;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr 0.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #d4a853;
}

.footer p {
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 5px;
}

.footer-details a {
    display: flex;
    color: rgba(245, 240, 232, 0.8) !important;
    line-height: 30px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4a853;
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 15px;
  list-style-type: none;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(245, 240, 232, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f0e8;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #d4a853;
}

.footer-details .logo {
  max-height: 100px;
  width: 100%;
  margin-left: -21px;
  margin-top: -22px;
}