.location-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.location-img {
    height: 250px;
    overflow: hidden;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.location-card:hover img {
    transform: scale(1.1);
}

.location-info {
    padding: 15px;
    text-align: center;
}

.location-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
  
}

.location-info p {
    font-size: 14px;
    color: #fff;
  
}

.full-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}
  
  .location-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
  .location-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: #fff;
}