.location-row {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 35px rgba(0, 153, 255, 0.4);
}

.location-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.location-card:hover .location-image {
  transform: scale(1.08);
}

.location-content {
  padding: 18px 20px;
  text-align: left;
}

.location-content h3 {
  margin: 0;
  font-size: 20px;
  color: #004d60;
}

.location-content p {
  margin-top: 8px;
  color: #333;
  font-size: 14px;
}
.contact-footer {
  background: #004d60;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-footer h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 255, 255, 0.5);
}

.contact-footer p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-footer a {
  color: #00e5ff;
  text-decoration: none;
  font-weight: bold;
}

.contact-footer a:hover {
  text-decoration: underline;
}

.placeholder-link {
  color: #ccc;
  font-style: italic;
}
