/* Footer */
.footer {
  background-color: #000000;
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  /* Adjusted grid layout to give more space to the map */
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 900;
  padding: 10px 30px;
  background-color: #fff;
  color: #000;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.footer-tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-style: italic;
}

.contact-info {
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: #ccc;
  line-height: 1.5;
  font-family: "Zing", sans-serif;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
  color: #00c853;
}

.social-links {
  margin: 20px 0;
}

.social-link {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-color: #222;
  color: #fff;
  margin: 0 8px 8px 0;
  border-radius: 50%;
  line-height: 45px;
  font-size: 1.3rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.social-link:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #00c853;
  color: #fff;
}

.footer-heading {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #00c853;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #00c853;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #00c853;
  transform: translateX(5px);
}

.map-container {
  width: 100%;
  /* Increased height for a larger map */
  height: 450px;
  border: 5px solid #00c853;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #222;
}

.copyright {
  color: #777;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.footer-legal a:hover {
  color: #00c853;
}

/* Media query to maintain layout on smaller screens */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
    margin-top: 20px;
  }
}

.parking-info {
  margin-bottom: 30px;
}

.parking-info .footer-heading {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  color: #fff;
}

.parking-info .footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #00c853;
}

.parking-list {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  color: #ccc;
  font-family: "Zing", sans-serif;
  line-height: 1.6;
}

.parking-list li {
  margin-bottom: 10px;
  position: relative;
}
